/* src/styles.scss */
:root {
  color-scheme: light;
  --bg: #f4f6f9;
  --surface: #ffffff;
  --surface-2: #f9fbfd;
  --border: #d9e1ea;
  --text: #1e293b;
  --muted: #64748b;
  --accent: #dc2626;
  --accent-strong: #b91c1c;
  --accent-soft: #fef2f2;
  --success: #0f766e;
  --warning: #b45309;
  --danger: #b91c1c;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --sidebar-width: 292px;
  font-family:
    Inter,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  min-height: 100%;
  background:
    radial-gradient(
      circle at top left,
      rgba(220, 38, 38, 0.1),
      transparent 28%),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f5f7fb 100%);
  color: var(--text);
}
body {
  min-height: 0;
}
button,
input,
select,
textarea {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
.page-shell {
  min-height: 100vh;
}
.surface-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.muted {
  color: var(--muted);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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