/* Small refinements layered on top of the Tailwind CDN build. */

:root {
  color-scheme: light;
}

/* Smooth, subtle scrollbars for the SaaS feel. */
* {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
*::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 9999px;
}

/* HTMX request indicator. */
.htmx-indicator {
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}
.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
  opacity: 1;
}
.htmx-request .hide-on-loading {
  opacity: 0;
}

/* Hide Alpine elements before init to avoid flashes. */
[x-cloak] {
  display: none !important;
}
