
        :root {
            --brand-red: #D32F2F;
            --brand-dark-red: #8B0000;
            --alert-yellow: #FFA000;
            --bg-color: #F4F1EA; 
            --sidebar-width: 250px;
            --footer-gray: #B0B0B0;
            --footer-dark: #575757;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            background-color: var(--bg-color);
            display: flex;
            min-height: 100vh;
        }

        /* --- SIDEBAR --- */
        .sidebar {
            width: var(--sidebar-width);
            background-color: #F5F5F5; 
            padding: 20px;
            display: flex;
            flex-direction: column;
            border-right: 1px solid #ddd;
            position: fixed;
            height: 100%;
            z-index: 100;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 40px;
            color: #333;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .logo i {
            color: var(--brand-red);
            font-size: 1.5rem;
        }

        .nav-links {
            list-style: none;
        }

        .nav-item {
            display: flex;
            align-items: center;
            padding: 15px;
            margin-bottom: 5px;
            cursor: pointer;
            border-radius: 8px;
            color: #333;
            font-weight: 600;
            transition: 0.2s;
        }

        .nav-item i {
            width: 30px;
        }

        .nav-item.active {
            background-color: #D6D6D6;
        }

        .nav-item:hover {
            background-color: #E0E0E0;
        }

       
        .main-content {
            margin-left: var(--sidebar-width);
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* Top Header */
        header {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 15px 40px;
            background-color: white;
            gap: 20px;
        }

        .search-bar {
            background: #f0f0f0;
            border-radius: 20px;
            padding: 8px 15px;
            display: flex;
            align-items: center;
            width: 300px;
        }

        .search-bar input {
            border: none;
            background: transparent;
            margin-left: 10px;
            outline: none;
            width: 100%;
        }

        .user-actions i {
            font-size: 1.2rem;
            margin-left: 20px;
            color: #555;
            cursor: pointer;
        }

        /* Hero Ka */
        .hero {
            background: linear-gradient(135deg, #c55353, #7a2828);
            margin: 20px 40px;
            border-radius: 12px;
            padding: 60px 40px;
            text-align: center;
            color: white;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            font-weight: 400;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 40px;
        }

        .btn {
            padding: 15px 40px;
            border-radius: 8px;
            border: none;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .btn:hover {
            transform: scale(1.05);
        }

        .btn-alert {
            background-color: #EE2B2B; 
            color: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        }

        .btn-update {
            background-color: #CFCFCF; 
            color: #333;
        }

      
        .reports-section {
            padding: 0 40px;
            margin-bottom: 40px;
        }

        .reports-section h3 {
            margin-bottom: 20px;
            color: #222;
        }

        .card {
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 15px; 
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .card-flood {
            background-color: var(--alert-yellow);
            color: #222;
        }

        .card-typhoon {
            background-color: #FF0000;
            color: white;
        }

        .card h4 {
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .card p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .timestamp {
            font-size: 0.8rem;
            margin-top: 10px;
            display: block;
            opacity: 0.8;
        }

        /* --- FOOTER (Na matching sa Figma) --- */
        .site-footer {
            margin-top: auto; 
            background-color: var(--footer-gray);
            color: #333;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 50px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .footer-logo {
            font-size: 1.4rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #333;
        }
        .footer-logo i { color: var(--brand-red); }
        .footer-tagline { font-size: 0.9rem; color: #555; }

      
        .footer-nav {
            display: flex;
            gap: 30px;
            font-weight: bold;
            font-size: 0.95rem;
        }
        .footer-nav a {
            text-decoration: none;
            color: #333;
        }
        .footer-nav a:hover { text-decoration: underline; }

       
        .divider {
            width: 1px;
            height: 40px;
            background-color: #777;
        }

        
        .footer-hotline {
            display: flex;
            align-items: center;
            gap: 15px;
            text-align: right;
        }
        .hotline-icon {
            font-size: 2rem;
            color: #333;
        }
        .hotline-text h5 { font-size: 1rem; margin-bottom: 2px; }
        .hotline-text span { 
            color: var(--brand-red); 
            font-weight: bold; 
            font-size: 1.1rem;
        }

        
        .copyright-bar {
            background-color: var(--footer-dark);
            color: #ccc;
            text-align: center;
            padding: 10px;
            font-size: 0.85rem;
        }

