@charset "UTF-8";

/* src/styles.scss */
:root {
  --bg: #f1f5f9;
  --surface: #ffffff;
  --header-bg: #0f172a;
  --header-text: #f1f5f9;
  --accent: #3b82f6;
  --accent-light: #eff6ff;
  --accent-dark: #1d4ed8;
  --current-color: #10b981;
  --current-bg: #d1fae5;
  --current-text: #065f46;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;
  --border: #e2e8f0;
  --radius-sm: 8px;
  --radius: 12px;
  --max-w: 920px;
  --shadow-sm: 0 1px 3px rgb(0 0 0 / .08), 0 1px 2px rgb(0 0 0 / .05);
  --shadow: 0 4px 6px rgb(0 0 0 / .07), 0 2px 4px rgb(0 0 0 / .05);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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