/* Dark mode enhancements */

[data-bs-theme="dark"] {
    color-scheme: dark;
}

[data-bs-theme="dark"] body {
    background-color: #121212;
    color: #e0e0e0;
}

[data-bs-theme="dark"] .card {
    background-color: #1e1e1e;
    border-color: #333;
}

[data-bs-theme="dark"] .card-header {
    background-color: #252525;
    border-bottom-color: #333;
}

[data-bs-theme="dark"] .table {
    --bs-table-bg: #1e1e1e;
    --bs-table-striped-bg: #252525;
    --bs-table-hover-bg: #2a2a2a;
    color: #e0e0e0;
}

[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select {
    background-color: #2a2a2a;
    border-color: #444;
    color: #e0e0e0;
}

[data-bs-theme="dark"] .form-control:focus,
[data-bs-theme="dark"] .form-select:focus {
    background-color: #2a2a2a;
    border-color: #FF8C00;
    color: #e0e0e0;
}

[data-bs-theme="dark"] .navbar-dark {
    background-color: #0d1117 !important;
}

[data-bs-theme="dark"] .modal-content {
    background-color: #1e1e1e;
    color: #e0e0e0;
}

[data-bs-theme="dark"] .modal-header {
    border-bottom-color: #333;
}

[data-bs-theme="dark"] .modal-footer {
    border-top-color: #333;
}

[data-bs-theme="dark"] .toast {
    background-color: #2a2a2a;
}

[data-bs-theme="dark"] .loading-overlay {
    background: rgba(0, 0, 0, 0.9);
}

