/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #7b7c7e #101010;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  -webkit-appearance: none;
}

*::-webkit-scrollbar {
  width: 14px;
}

*::-webkit-scrollbar-track {
  background: #101010;
}

*::-webkit-scrollbar-thumb {
  background-color: #7b7c7e;
  border-radius: 20px;
  border: 1px solid #101010;
}
