/* src/styles.scss */
:root {
  --color-brand: #1a7f4e;
  --color-brand-hover: #15673f;
  --color-brand-rgb:
    26,
    127,
    78;
  --color-bg-page: #f6f7f9;
  --color-bg-subtle: #eef0f3;
  --color-surface: #ffffff;
  --color-text-primary: #111827;
  --color-text-secondary: #374151;
  --color-text-muted: #6b7280;
  --color-text-placeholder:#9ca3af;
  --color-border: #e5e7eb;
  --color-border-strong: #d1d5db;
  --color-error: #dc2626;
  --color-error-rgb:
    220,
    38,
    38;
  --color-error-bg: #fef2f2;
  --color-error-border: #fecaca;
  --color-success: #16a34a;
  --color-success-bg: #f0fdf4;
  --color-warning: #d97706;
  --color-warning-bg: #fffbeb;
  --font-sans:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --color-bg-page: #0f1117;
    --color-bg-subtle: #1a1d27;
    --color-surface: #1f2330;
    --color-text-primary: #f3f4f6;
    --color-text-secondary: #d1d5db;
    --color-text-muted: #9ca3af;
    --color-text-placeholder:#6b7280;
    --color-border: #2d3140;
    --color-border-strong: #3d4258;
    --color-error-bg: #3b0a0a;
    --color-error-border: #7f1d1d;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  margin: 0;
  height: 100%;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-page);
}
app-root {
  display: block;
  min-height: 100dvh;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text-primary);
}
p {
  margin: 0 0 0.75rem;
  color: var(--color-text-secondary);
}
a {
  color: var(--color-brand);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
  border-radius: 4px;
}
.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;
}
.dashboard-page {
  min-height: 100dvh;
}
.topnav {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 0 1rem;
}
.topnav .topnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topnav .brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.topnav .brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--color-brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topnav .brand-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-primary);
}
.topnav .topnav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.topnav .user-chip {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  display: none;
}
@media (min-width: 600px) {
  .topnav .user-chip {
    display: inline;
  }
}
.topnav .btn-signout {
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 8px;
  background: transparent;
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  cursor: pointer;
}
.topnav .btn-signout:hover {
  background: var(--color-bg-subtle);
}
.dashboard-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.welcome-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.welcome-card h1 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}
.welcome-card .coming-soon {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.quick-link-card {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 150ms, box-shadow 150ms;
}
.quick-link-card:hover {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(var(--color-brand-rgb), 0.08);
  text-decoration: none;
}
.quick-link-card .ql-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.quick-link-card h2 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.quick-link-card p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin: 0;
}

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