.chart-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(148, 163, 184, 0.06);
}

.chart-legend {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legend-swatch {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
}

.progress-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #38bdf8, #0ea5e9);
}
