/* Custom Footer Styles */

/* Main site footer (dark background) */
footer.bg-dark .text-muted,
footer.bg-dark small,
footer.bg-dark .text-light {
    color: #f8f9fa !important;
}

footer.bg-dark .text-white {
    color: #ffffff !important;
}

footer.bg-dark a.text-warning {
    color: #ffc107 !important;
}

/* Admin footer (light background) */
footer.bg-light .text-muted,
footer.bg-light small,
footer.bg-light .text-dark {
    color: #495057 !important;
}

footer.bg-light a.text-primary {
    color: #0d6efd !important;
}

/* Home page footer */
footer .text-muted {
    color: #6c757d !important;
}

footer a.text-primary {
    color: #0d6efd !important;
}

/* Force override for all footer text */
footer * {
    color: inherit !important;
}

/* Specific overrides */
.bg-dark footer .text-muted { color: #f8f9fa !important; }
.bg-light footer .text-muted { color: #495057 !important; }
.bg-dark footer small { color: #f8f9fa !important; }
.bg-light footer small { color: #495057 !important; }

/* Global text-muted override for dark backgrounds */
.bg-dark .text-muted {
    --bs-text-opacity: 1;
    color: #f8f9fa !important;
}