/* [project]/frontend/src/app/globals.css [app-client] (css) */
*, :before, :after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

:root {
  --bg-base: #09090b;
  --bg-surface: #18181b;
  --bg-elevated: #27272a;
  --bg-muted: #3f3f46;
  --bg-subtle: #52525b;
  --border-default: #ffffff1f;
  --border-muted: #ffffff14;
  --border-strong: #ffffff2e;
  --text-primary: #fff;
  --text-secondary: #d4d4d8;
  --text-muted: #a1a1aa;
  --text-faint: #71717a;
  --accent-primary: #0ea5e9;
  --accent-primary-hover: #38bdf8;
  --accent-green: #22c55e;
  --accent-yellow: #eab308;
  --accent-red: #ef4444;
  --accent-blue: #3b82f6;
  --shadow-sm: 0 1px 2px #0006;
  --shadow-md: 0 4px 12px #0006;
  --shadow-lg: 0 8px 24px #00000080;
  --font-sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 13px;
  line-height: 1.5;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: #ffffff1a;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffffff26;
}

:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

::selection {
  background: #0ea5e94d;
}

/*# sourceMappingURL=frontend_src_app_globals_a7e5a063.css.map*/