/**
 * Minimal Footer Styles
 * For Mega/Kaiali sites - simple, unobtrusive footer
 */

.footer.footer-minimal {
    background: transparent;
    color: var(--color-gray-500);
    padding: 10px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(var(--color-gray-400-rgb), 0.2);
}

.footer.footer-minimal .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer.footer-minimal .text-center {
    font-size: 0.8rem;
    font-weight: 400;
}

/* Dark mode */
html.dark .footer.footer-minimal {
    color: var(--color-gray-600);
    border-top-color: rgba(var(--color-gray-700-rgb), 0.3);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .footer.footer-minimal {
        padding: 8px 0;
        margin-bottom: 60px; /* Space for mobile nav */
    }

    .footer.footer-minimal .text-center {
        font-size: 0.75rem;
    }
}
