/* Project styles on top of the vendored NiceAdmin theme.
   The theme names Google fonts; nothing is loaded from a remote host, so
   the stack falls back to the system UI font here. */
:root {
  --cpm-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body,
.sidebar-nav .nav-link,
.pagetitle h1 {
  font-family: var(--cpm-font);
}

/* htmx request indicator */
.htmx-indicator {
  opacity: 0;
  transition: opacity 200ms ease-in;
}
.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
  opacity: 1;
}
