/* Firefox */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #4b5563 #111827;
}

/* Chrome, Edge, Safari */
.custom-scrollbar::-webkit-scrollbar {
    width: 10px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #111827;
    border-radius: 5px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #4b5563;
    border-radius: 5px;
    border: 2px solid #111827;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: #6366f1;
}