/* Modern Scrollbar Styling */
.scrollbar_thin {
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #4a5568 #192331;
}

/* Webkit browsers (Chrome, Safari, Edge) */
.scrollbar_thin::-webkit-scrollbar {
    width: 8px;
}

.scrollbar_thin::-webkit-scrollbar-track {
    background: #192331;
    border-radius: 4px;
}

.scrollbar_thin::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 4px;
    border: 1px solid #2d3748;
}

.scrollbar_thin::-webkit-scrollbar-thumb:hover {
    background: #5a6478;
}

.scrollbar_thin::-webkit-scrollbar-thumb:active {
    background: #6b7486;
} 