﻿*::-webkit-scrollbar {
    width: 10px; /* width of the entire scrollbar */
}

*::-webkit-scrollbar-track{
    background: #fff; /* color of the tracking area */
}

*::-webkit-scrollbar-thumb {
    background-color: #797979;
    border-radius: 100px;
    border: 2px solid #fff;
}

    *::-webkit-scrollbar-thumb:hover {
        background-color: #353535; /* color of the scroll thumb */
    }
