html,
body {
  scrollbar-width: thin;
  scrollbar-color: #4a4a4a #1a1a1a;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #4a4a4a;
  border-radius: 10px;
  border: 2px solid #1a1a1a;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #6a6a6a;
}

::-webkit-scrollbar-corner {
  background: #1a1a1a;
}