/* src/styles.css */
:root {
  --primary-teal: #00A88E;
  --secondary-teal: #F0FDFA;
  --primary-yellow: #FFD147;
  --bg-soft: #F8FAFC;
  --text-main: #111827;
  --text-muted: #6B7280;
  --border-color: #E5E7EB;
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --info-blue: #0284C7;
  --info-bg: #F0F9FF;
  --success-green: #059669;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: var(--bg-soft);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}
h1,
h2,
h3 {
  font-weight: 800;
  margin-bottom: 1rem;
}
.card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn-primary {
  background-color: var(--primary-yellow);
  color: var(--text-main);
  padding: 1rem 2.5rem;
  border-radius: 3rem;
  border: none;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 1.125rem;
  box-shadow: 0 4px 6px -1px rgba(255, 209, 71, 0.3);
}
.btn-primary:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
}
.info-banner {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.info-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary-teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.desktop-only {
  display: none;
}
@media (min-width: 768px) {
  .desktop-only {
    display: block;
  }
}
.sparkline-container {
  height: 60px;
  margin: 1rem 0;
}
.progress-bar-bg {
  height: 10px;
  background: #F3F4F6;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 0.5rem;
}
.progress-bar-fill {
  height: 100%;
  background: var(--primary-teal);
  border-radius: 5px;
}
.btn-secondary {
  background: white;
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

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