/**
 * footer.css - NAMESPACED MODULE STYLES (V14.7)
 * Matches: footer.php
 * Strategy: White Background/Black Font + Ultra-Slim Height Preservation
 * Updated: 2026.04.27
 */

/* Namespace for the main footer area */
#terminal_footer {
    /* UPDATED: Unified white background and standard border */
    border-top: 1px solid #ced4da;
    background-color: #ffffff; 
    /* PRESERVED: Height compression */
    padding: 6px 0; 
    /* PRESERVED: Flushes footer to the bottom */
    margin-top: 0; 
    /* UPDATED: Dark text for white background */
    color: #1c1e21;
    font-family: 'Courier New', monospace;
    width: 100%;
}

#terminal_footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

#terminal_footer .footer-meta p {
    font-size: 0.75rem;
    /* PRESERVED: Removes vertical gap */
    margin-bottom: 0; 
    margin-top: 2px;
}

#terminal_footer .system-id {
    /* UPDATED: Darker contrast for white background */
    color: #0b7a24;
}

#terminal_footer .compliance-tag {
    color: #f97316;
}

#terminal_footer .regulatory-disclosure {
    font-size: 0.65rem;
    /* UPDATED: Adjusted for visibility on white */
    color: #888;
    text-transform: uppercase;
}

#terminal_footer .maintenance-status-static {
    /* PRESERVED: Tightens maintenance bar */
    margin-top: 5px; 
    font-size: 0.7rem;
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#terminal_footer .status-indicator {
    width: 8px;
    height: 8px;
    background: #dc3545;
    border-radius: 50%;
}

/* --- ADMINISTRATIVE ACCESS (FULLY PRESERVED) --- */
#admin_access .admin-quick-access {
    position: fixed;
    bottom: 30px; 
    right: 20px;
    /* UPDATED: Background/Border contrast for visibility on white */
    background: #1c1e21;
    border: 1px solid #0b7a24;
    padding: 10px 15px;
    border-radius: 4px;
    z-index: 9999;
}

#admin_access .admin-control-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00ff41;
    font-size: 0.7rem;
    font-weight: bold;
}

#admin_access .terminal-indicator {
    width: 6px;
    height: 6px;
    background: #00ff41;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* --- LEGAL LINKS SECTION (PRESERVED) --- */
.footer-legal-links {
    /* PRESERVED: Tightens gap */
    margin-bottom: 2px; 
    font-size: 0.8rem;
    color: #606770; /* Matches --text-muted */
}

.footer-legal-links a {
    color: #606770;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: #d47a24; /* Matches --accent */
    text-decoration: underline;
}

/* --- MOBILE PORTRAIT READABILITY BOOST (PRESERVED) --- */
@media (max-width: 480px) {
    .footer-legal-links {
        font-size: 0.95rem !important;
        line-height: 1.4;
    }
    
    .footer-legal-links a {
        display: inline-block;
        margin: 5px 10px;
    }

    #terminal_footer .footer-meta p {
        font-size: 0.85rem !important;
    }
    
    #terminal_footer {
        /* UPDATED: Mobile parity - ensuring white background remains solid */
        background-color: #ffffff !important;
        padding: 12px 0;
    }
}