/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.stylized-scroll::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 12px;               /* width of the entire scrollbar */
}
  
.stylized-scroll::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: #f2f2f2;        /* color of the tracking area */
}
  
.stylized-scroll::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background-color: #ccc;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
}