/* ── Global Reset & Base Styles ───────────────
   Referenced in index.html. Any custom utilities
   that can't be expressed with Tailwind go here. */

/* Smooth scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}
