/* src/styles.scss */
:root {
  --brand-primary: #1f6f73;
  --brand-accent: #f08a66;
  --muted: #6b6b6b;
  --bg: #fafafa;
}
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  background: var(--bg);
  color: #222;
  font-family: "Inter", sans-serif;
}
.btn {
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
.btn.primary {
  background: var(--brand-accent);
  color: white;
}
.btn.ghost {
  background: transparent;
  border: 1px solid #eee;
  color: var(--brand-primary);
}

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