/* Custom CSS Override untuk menghilangkan dark mode */

/* Override DataTables dark mode */
:root.dark {
    --dt-html-background: white !important;
}

/* Pastikan tidak ada dark mode yang aktif */
html[data-bs-theme="dark"],
html.dark,
body[data-bs-theme="dark"],
body.dark {
    background-color: white !important;
    color: #212529 !important;
}

/* Override untuk memastikan sidebar tetap konsisten */
.sidebar-light {
    background-color: #4e73df !important;
}

.sidebar-light .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
}

.sidebar-light .nav-link:hover {
    color: white !important;
}

.sidebar-light .sidebar-brand {
    color: white !important;
}

.sidebar-light .sidebar-heading {
    color: rgba(255, 255, 255, 0.4) !important;
}

.sidebar-light .sidebar-divider {
    border-color: rgba(255, 255, 255, 0.15) !important;
}