body::-webkit-scrollbar {
    width: 12px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: #ffffff;        /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: #0563bb;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid #ffffff;  /* creates padding around scroll thumb */
}

body {
    scrollbar-width: thin;          /* "auto" or "thin" */
    scrollbar-color: #0563bb #ffffff;   /* scroll thumb and track */
}
