/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #006098 #eaecf0;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
}

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

*::-webkit-scrollbar-thumb {
  background-color: #006098;
  border-radius: 20px;
  border: 3px solid #eaecf0;
}
