/* src/styles.css */
:root {
  --bg-canvas: #101012;
  --bg-surface: #1c1c1f;
  --bg-surface-raised: #242428;
  --border-subtle: #2e2e33;
  --text-primary: #e7e7ea;
  --text-secondary: #a7a7af;
  --text-muted: #707077;
  --accent-primary: #a6a6ae;
  --accent-primary-contrast: var(--bg-canvas);
  --state-success: #7fa88f;
  --state-error: #c97a72;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background-color: var(--bg-canvas);
  color: var(--text-primary);
  font-family:
    "Inter",
    "IBM Plex Sans",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: inherit;
}
button {
  font-family: inherit;
}

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