/*
 * Scrollbar.
 *
 * These values were #ffcb30 on #090f1b - a yellow thumb in a navy gutter,
 * inherited from a fork two brands ago and enqueued on every page. It was
 * already wrong before this theme went light; on paper it is a navy stripe
 * down the side of the window. Hardcoded rather than tokenised because this
 * file sits outside the Tailwind build.
 *
 * line #DDD8CE, muted #5C6660, paper #F6F4EF.
 */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #c9c3b6;
  border: 3px solid #f6f4ef;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #5c6660;
}

::-webkit-scrollbar-track {
  background: #f6f4ef;
}

/* Firefox */
html {
  scrollbar-color: #c9c3b6 #f6f4ef;
  scrollbar-width: thin;
}

/* Opt-out, used by horizontally scrolling data tables and rails. */
.no-scrollbar-8080 {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar-8080::-webkit-scrollbar {
  display: none;
}
