/*
 * Scrollbar, repointed onto the brand palette.
 *
 * Was #ffcb30 on #090f1b — a yellow-on-navy pair belonging to two forks ago,
 * which sat next to the page as the only thing on screen outside the two-colour
 * system. Values are literal here because this file is plain CSS and is
 * enqueued directly; it is not processed by Tailwind.
 *
 *   thumb #FF7A55  reef
 *   track #0D2E38  ink-800
 */
::-webkit-scrollbar {
  width: 12px;
}

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

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

html {
  scrollbar-color: #ff7a55 #0d2e38;
  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 */
}
