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

/* Track */
::-webkit-scrollbar-track {
    background-color: #cfcfcf6e;
    border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(14 165 233);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgb(48, 182, 244);
}