/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #111827; /* gray-900 */
}
::-webkit-scrollbar-thumb {
    background: #374151; /* gray-700 */
}
::-webkit-scrollbar-thumb:hover {
    background: #4b5563; /* gray-600 */
}
/* Firefox support */
* {
    scrollbar-width: thin;
    scrollbar-color: #374151 #111827;
}
