/* Custom Scrollbar for Dark UI */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #030712;
}

::-webkit-scrollbar-thumb {
    background: #1f2937;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #374151;
}

/* Ensure the select dropdown has a dark background on mobile */
select option {
    background-color: #0a0a1a;
    color: white;
}