/* Shared defaults for the public site, dashboard, and standard chat theme. */
:root {
  color-scheme: dark;
  --bg: #111315;
  --panel: #191c1f;
  --card: #191c1f;
  --inset: #141719;
  --border: #33383d;
  --text: #edf0f2;
  --muted: #a0a8b0;
  --accent: #adcbe5;
  --action: #dce8f2;
  --action-text: #17232e;
  --danger: #f0a29c;
  --success: #93bca4;
  --warning: #d8bc86;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
body { font-family: var(--font); -webkit-font-smoothing: antialiased; }
button, input, select, textarea { font-family: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
button:disabled { opacity: .55; cursor: not-allowed; }
input, select, textarea { min-width: 0; }
input[type="checkbox"], input[type="radio"] { accent-color: var(--accent); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
