/* =========================================
   FOOTER STYLES (LIGHT THEME - UNIFIED)
   ========================================= */

#app-footer {
    background-color: #f8fafc;
    /* Very light grey/white */
    color: #475569;
    /* Dark slate text */
    padding: 10px 24px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    z-index: 100;
}

.footer-left,
.footer-center,
.footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand {
    font-weight: 700;
    color: #1e293b;
}

.footer-links a {
    color: #3b82f6;
    /* Blue links to match original style */
    text-decoration: none;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 12px;
    font-size: 1.1rem;
    margin-right: 10px;
}

.social-icons a {
    color: #64748b;
    transition: all 0.2s;
}

.social-icons a.instagram:hover {
    color: #e4405f;
    transform: scale(1.1);
}

.social-icons a.youtube:hover {
    color: #ff0000;
    transform: scale(1.1);
}

.footer-version {
    font-family: 'Consolas', monospace;
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    color: #4f46e5;
    font-size: 0.75rem;
}

#footer-status-indicator {
    color: #475569;
}

@media (max-width: 900px) {
    #app-footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 15px;
        height: auto;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-center div {
        display: none;
        /* Hide vertical separators on mobile */
    }
}