/* Custom scrollbars - remove default gray scrollbar from entire page */

* {
    scrollbar-width: thin;
    scrollbar-color: #2d3748 #0f172a;
}

*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background: #2d3748;
    border-radius: 3px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #4a5568;
}

/* Custom scrollbar class for specific elements */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #2d3748 #0f172a;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #2d3748;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #4a5568;
}
