/* src/styles.css */
:root {
  --brand-primary: #1E4E8C;
  --brand-secondary: #F5A623;
  --brand-accent: #00B894;
  --brand-on-primary: #ffffff;
  --surface-bg: #F7F7F5;
  --surface-card: #FFFFFF;
  --surface-input: #FAFAFA;
  --surface-border: #E5E5E0;
  --surface-hover: #F2F2EE;
  --text-strong: #16181D;
  --text-muted: #5A6470;
  --color-danger: #C62828;
  --color-warning: #D98E04;
  --color-success: #047857;
}
[data-theme=dark] {
  --surface-bg: #0F1115;
  --surface-card: #181B22;
  --surface-input: #1F232C;
  --surface-border: #2A2F3A;
  --surface-hover: #232834;
  --text-strong: #F1F2F4;
  --text-muted: #9AA1AC;
  --brand-on-primary: #ffffff;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  font-family:
    "Manrope",
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  font-size: 16px;
  color: var(--text-strong);
  background: var(--surface-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: var(--brand-primary);
}

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