/* Dark mode overrides for mapaSite.php */
    body.dark-mode {
        background-color: #0f172a !important;
        color: #f1f5f9 !important;
    }
    
    /* Main Container */
    body.dark-mode .container-fluid[style*="background: linear-gradient"] {
        background: #0f172a !important;
    }
    
    /* Header Text */
    body.dark-mode h1[style*="color: #1f2937"] {
        color: #f1f5f9 !important;
    }
    body.dark-mode p[style*="color: #6b7280"] {
        color: #cbd5e1 !important;
    }
    
    /* Search Box */
    body.dark-mode #sitemap-search {
        background-color: #1e293b !important;
        border-color: #334155 !important;
        color: #f1f5f9 !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
    }
    body.dark-mode #sitemap-search::placeholder {
        color: #94a3b8 !important;
    }
    body.dark-mode #sitemap-search + i {
        color: #94a3b8 !important;
    }
    
    /* Category Cards */
    body.dark-mode .sitemap-category > div {
        background: #1e293b !important;
        border-color: #334155 !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
    }
    
    /* Category Header */
    body.dark-mode .sitemap-category h3 {
        color: #f1f5f9 !important;
    }
    body.dark-mode .sitemap-category p {
        color: #94a3b8 !important;
    }
    
    /* Links */
    body.dark-mode .sitemap-link[style*="color: #1f2937"] { /* Parent */
        color: #f1f5f9 !important;
    }
    body.dark-mode .sitemap-link[style*="color: #6b7280"], 
    body.dark-mode .sitemap-link[style*="color: #4b5563"] { /* Child */
        color: #cbd5e1 !important;
    }
    
    /* Contact Buttons */
    body.dark-mode a[href="contato.php"] {
        background: #f1f5f9 !important;
        color: #0f172a !important;
    }
    
    /* Mark highlight */
    body.dark-mode mark {
        background: #78350f !important;
        color: #fef3c7 !important;
    }