
        /* Base Variables & Reset */
        :root {
            --forest-green: #1b4332;
            --leaf-green: #2d6a4f;
            --emerald: #52b788;
            --light-emerald: #d8f3dc;
            --danger: #e63946;
            --warning: #ffb703;
            --light-bg: #f4f7f5;
            --card-bg: #ffffff;
            --text-dark: #2d3142;
            --text-light: #ffffff;
            --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        body {
            margin: 0;
            padding: 0;
            background-color: var(--light-bg);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Global Header */
        .global-header {
            background-color: var(--forest-green);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: var(--text-light);
            font-size: 1.5rem;
            font-weight: bold;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .nav-link {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--emerald);
        }
        .nav-btn {
            background-color: var(--emerald);
            color: var(--forest-green);
            padding: 8px 16px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .nav-btn:hover {
            background-color: #74c69d;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }

        /* Dashboard Overview Section */
        .dashboard-section {
            padding: 40px 0;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .dashboard-title h1 {
            font-size: 2rem;
            color: var(--forest-green);
            margin: 0 0 5px 0;
        }

        .live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--light-emerald);
            color: var(--forest-green);
            padding: 6px 12px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background-color: #2b9348;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(0.9); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.4; }
            100% { transform: scale(0.9); opacity: 1; }
        }

        /* Metric Grid Cards */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .metric-card {
            background: var(--card-bg);
            padding: 25px;
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            border-left: 5px solid var(--leaf-green);
        }

        .metric-card.alert-active {
            border-left-color: var(--danger);
        }

        .metric-title {
            font-size: 0.9rem;
            color: #666;
            margin: 0 0 10px 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .metric-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 5px 0;
        }

        .metric-unit {
            font-size: 0.9rem;
            color: #888;
        }

        /* Data Layout: Map & Logs */
        .data-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        /* Map UI Blueprint Placeholder */
        .map-wrapper {
            background: var(--card-bg);
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            padding: 20px;
            display: flex;
            flex-direction: column;
        }

        .map-header {
            margin-bottom: 15px;
            font-weight: 600;
            color: var(--forest-green);
        }

        .mock-map {
            background-color: #e3eedc;
            border: 2px dashed #b5cda3;
            border-radius: 8px;
            flex-grow: 1;
            min-height: 400px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .map-grid-line {
            position: absolute;
            background: rgba(45, 106, 79, 0.05);
        }

        .map-pin {
            position: absolute;
            font-size: 1.5rem;
            cursor: pointer;
            animation: bounce 2s infinite;
        }

        .map-pin.danger { top: 30%; left: 45%; }
        .map-pin.safe-1 { top: 60%; left: 25%; }
        .map-pin.safe-2 { top: 45%; left: 70%; }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        /* Live Activity Logs */
        .log-wrapper {
            background: var(--card-bg);
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            padding: 20px;
            display: flex;
            flex-direction: column;
            max-height: 480px;
        }

        .log-header {
            font-weight: 600;
            color: var(--forest-green);
            margin-bottom: 15px;
        }

        .log-feed {
            overflow-y: auto;
            flex-grow: 1;
            padding-right: 5px;
        }

        .log-item {
            padding: 12px;
            border-bottom: 1px solid #eee;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .log-item:last-child {
            border-bottom: none;
        }

        .log-time {
            color: #999;
            font-weight: bold;
            margin-right: 5px;
        }

        .status-badge {
            display: inline-block;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: bold;
            color: var(--text-light);
            margin-bottom: 5px;
        }

        .status-badge.danger-bg { background-color: var(--danger); }
        .status-badge.warning-bg { background-color: var(--warning); }
        .status-badge.success-bg { background-color: var(--leaf-green); }

        /* Global Footer */
        .global-footer {
            background-color: #112a1f;
            color: #e0e0e0;
            padding: 60px 0 20px 0;
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-brand h3, .footer-links h4, .footer-contact h4 {
            color: var(--text-light);
            margin-top: 0;
            margin-bottom: 20px;
        }
        .footer-links a {
            display: block;
            color: #b0b0b0;
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--emerald);
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid var(--forest-green);
            margin-top: 40px;
            padding-top: 20px;
            font-size: 0.9rem;
            color: #808080;
        }

        /* Responsive Layout Rules */
        @media (max-width: 992px) {
            .data-layout {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--forest-green);
                padding: 20px;
                box-sizing: border-box;
                gap: 15px;
            }
            .nav-menu.active {
                display: flex;
            }
        }
   