.custom-scrollbar::-webkit-scrollbar {
    width: 14px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #6b6b6b;
    border-radius: 8px;
    border: 4px solid transparent;
    background-clip: content-box;
}

/* Firefox */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #6b6b6b transparent;
}