::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background-color: transparent;
border-radius: 10px;
border: none;
}
::-webkit-scrollbar-thumb:hover {
background-color: #888;
}
::-webkit-scrollbar:hover ::-webkit-scrollbar-thumb {
background-color: #888;
}
/* For better scrollbar behavior on hover */
* {
scrollbar-width: thin;
scrollbar-color: transparent transparent;
}
*:hover {
scrollbar-color: #888 transparent;
}