/* always show scrollbar */
body {
    overflow-y: scroll;
}

/* width */
::-webkit-scrollbar {
    width: 16px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #1E1E1E;
  }

/* Handle */
::-webkit-scrollbar-thumb {
    height: 56px;
    border-radius: 8px;
    border: 4px solid transparent;
    background-clip: content-box;
    background-color: #BD54F2;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-image: radial-gradient(#641d66, #BD54F2);
}