/* Project-specific tweaks layered on top of Tailwind / Flowbite. */

html {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

@supports (font-variation-settings: normal) {
  html {
    font-family: 'Inter var', 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  }
}

.ac-card {
  border-radius: 12px;
  background-color: white;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px -8px rgba(15, 23, 42, 0.08);
}

.dark .ac-card {
  background-color: #0f172a;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Hide scrollbar visually for horizontal table on mobile */
.scroll-snap-x {
  scroll-snap-type: x mandatory;
}
