/*
 * Scrollbar.
 *
 * These two values were `#ffcb30` on `#090f1b` — the yellow-on-navy of the
 * brand two forks before this one. The file is enqueued site-wide
 * (inc/theme-setup.php), so that palette was still painting the scrollbar on
 * every page long after the rest of the theme had moved on. Nothing errors
 * when a stylesheet is simply the wrong colour.
 *
 * Kept as literals rather than tokens because this file is hand-written and
 * not processed by Tailwind. If the brand moves again, these move with it:
 *   thumb = copper        #8C6239
 *   track = hull-800      #F6F8FA
 */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #8c6239;
  border-radius: 6px;
}

::-webkit-scrollbar-track {
  background: #f6f8fa;
  border-radius: 6px;
}

/* Firefox */
html {
  scrollbar-color: #8c6239 #f6f8fa;
  scrollbar-width: thin;
}

.no-scrollbar-8080 {
  -ms-overflow-style: none; /* IE dan Edge */
  scrollbar-width: none; /* Firefox */
}
.no-scrollbar-8080::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
