/* Select dropdowns in dark mode */
select {
    color-scheme: dark;
}

select option {
    background-color: #0f172a !important; /* slate-900 */
    color: #f8fafc !important; /* slate-50 */
    padding: 12px;
}

/* Custom scrollbar for dark mode */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Input focus states */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}
