/*
 * Scrollbar.
 *
 * Previously #ffcb30 on #090f1b — a yellow thumb on a near-black track, from a
 * brand two forks ago. On a cream page that read as a highlighter stripe down
 * the side of every screen.
 *
 * Values are literal rather than Tailwind tokens because this file is served
 * as-is and never passes through the build.
 *   thumb #C7C2BA  (paper-200 shaded, visible on cream without shouting)
 *   track #F4F1EC  (paper-100, the raised surface)
 */
::-webkit-scrollbar {
  width: 12px;
}

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

::-webkit-scrollbar-thumb:hover {
  background-color: #4338ca;
}

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

/* Firefox */
html {
  scrollbar-color: #c7c2ba #f4f1ec;
  scrollbar-width: thin;
}

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