/* Small overrides on top of Tailwind. Keep this file minimal — prefer utility classes. */

/* Smooth scroll for in-page anchors */
html { scroll-behavior: smooth; }

/* Slightly tighter focus rings for keyboard nav */
:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Tabular numbers in KPI values render nicer */
.tabular-nums { font-variant-numeric: tabular-nums; }

/* Scrollbar polish on long tables (WebKit) */
.scroll-pretty::-webkit-scrollbar { height: 10px; width: 10px; }
.scroll-pretty::-webkit-scrollbar-thumb { background: #334155; border-radius: 8px; }
.scroll-pretty::-webkit-scrollbar-thumb:hover { background: #475569; }
.scroll-pretty::-webkit-scrollbar-track { background: transparent; }
