/* Custom CSS */

/* Fix alert warning text visibility in dark mode */
.alert-warning,
.alert-warning p,
.alert-warning .form-text,
.alert-warning h1,
.alert-warning h2,
.alert-warning h3,
.alert-warning h4,
.alert-warning h5,
.alert-warning h6 {
    color: #000 !important;
}

/* Fix badge bg-secondary contrast - Make it look like bg-dark as requested */
.badge.bg-secondary {
    color: #fff !important;
    background-color: #212529 !important; /* Bootstrap dark color */
}