﻿/* width */
.custom-scrollbar::-webkit-scrollbar,
.custom-scrollbar ::-webkit-scrollbar {
    height: 3px;
    width: 3px;
}

/* Track */
.custom-scrollbar::-webkit-scrollbar-track,
.custom-scrollbar ::-webkit-scrollbar-track {
    background: var(--background);
}

/* Handle */
.custom-scrollbar::-webkit-scrollbar-thumb,
.custom-scrollbar ::-webkit-scrollbar-thumb {
    background: #B5C0CE;
    border-radius: 2px;
}

    /* Handle on hover */
    .custom-scrollbar::-webkit-scrollbar-thumb:hover,
    .custom-scrollbar ::-webkit-scrollbar-thumb:hover {
        background: #B5C0CE;
    }
