/*
 * Scrollbar. The previous values (#A9A9A9 thumb on a #fff track) came from the
 * brand this theme was forked from: a white track is visibly brighter than the
 * sand page it runs beside.
 */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #6A5F52; /* ink-muted */
  border-radius: 6px;
  border: 3px solid #F1EADE; /* sand-100, so the thumb reads as inset */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #2F4A34; /* forest */
}

::-webkit-scrollbar-track {
  background: #F1EADE; /* sand-100 */
}

html {
  scrollbar-color: #6A5F52 #F1EADE;
  scrollbar-width: thin;
}

.no-scrollbar-8080 {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar-8080::-webkit-scrollbar {
  display: none;
}
