/* Site-wide custom scrollbar */

* {
    scrollbar-width: thin;
    scrollbar-color: #2196f3 #eef1f5;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background-color: #eef1f5;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background-color: #2196f3;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #0e61de;
}
