/* tort — base styles loaded alongside Tailwind CDN. */

:root {
  --tort-fg: #18181b;
  --tort-muted: #71717a;
  --tort-bg: #fafaf9;
  --tort-accent: #7c2d12;
}

html, body {
  background: var(--tort-bg);
  color: var(--tort-fg);
}

.prose pre {
  background: #f4f4f5;
  padding: 0.75rem;
  border-radius: 0.375rem;
  overflow-x: auto;
}

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