/* Custom styles for dark mode */
[data-bs-theme="dark"] {
    body {
        background-color: #212529;
        color: #dee2e6;

        td {
            background: inherit !important;
            color: white !important;
        }

        color-scheme: dark;

        .card {
            background-color: #2b3035;
            border-color: #373b3e;
        }

        .bg-light {
            background-color: #2b3035 !important;
        }

        .text-muted {
            color: #adb5bd !important;
        }
    }


}