/* Chrome / Edge / Safari */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 20px;
  height: 20px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background-color: #001bff;
  border-radius: 999px;
  border: 6px solid transparent;
  background-clip: content-box;
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #001bff transparent;
}
