/* src/styles.scss */
:root {
  --bg-deep: #f4f5f7;
  --bg-card: #ffffff;
  --bg-surface: #f0f1f4;
  --border-subtle: rgba(0, 0, 0, 0.07);
  --border-medium: rgba(0, 0, 0, 0.12);
  --text-primary: #111318;
  --text-secondary: #3d404a;
  --text-tertiary: #2d2f36;
  --text-muted: #6b7280;
  --accent-green: #059669;
  --accent-green-dim: rgba(5, 150, 105, 0.08);
  --accent-blue: #2563eb;
  --accent-amber: #d97706;
  --accent-red: #dc2626;
  --accent-red-dim: rgba(220, 38, 38, 0.06);
  --accent-purple: #7c3aed;
  --font-body:
    "DM Sans",
    system-ui,
    sans-serif;
  --font-serif:
    "Instrument Serif",
    Georgia,
    serif;
  --font-mono: "JetBrains Mono", monospace;
  --sidebar-w: 272px;
  --sidebar-w-collapsed: 68px;
  --shell-left: var(--sidebar-w);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
button {
  font-family: inherit;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
