/* This styles the entire scrollbar */
::-webkit-scrollbar {
    width: 6px;
    background-color: #479D59;
}

/* This styles the draggable scrolling handle */
::-webkit-scrollbar-thumb {
    background-color: #ffffff; /* Change this to any color you like */
    border-radius: 3px;     /* For rounded corners */
}

/* On hover of the scrolling handle */
::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Change this to any color you like */
}

/* This styles the track (background) of the scrollbar */
::-webkit-scrollbar-track {
    background-color: transparent;
}

/* For Firefox, from version 64 onwards */
* {
    scrollbar-width: thin;
    scrollbar-color: #ffffff transparent; /* Thumb and Track color */
}
