/* Progress bar for dashboard cards */
.dashboard-progress {
  width: 100%;
  height: 8px;
  background: #e0e7ff;
  border-radius: 6px;
  margin: 8px 0 12px 0;
  overflow: hidden;
}
.dashboard-progress-bar {
  height: 100%;
  border-radius: 6px;
  transition: width 0.6s cubic-bezier(.4,2,.3,1);
}
.dashboard-progress-bar--blue { background: linear-gradient(90deg,#6366f1,#818cf8); }
.dashboard-progress-bar--green { background: linear-gradient(90deg,#22c55e,#4ade80); }
.dashboard-progress-bar--amber { background: linear-gradient(90deg,#f59e42,#fbbf24); }
.dashboard-progress-bar--rose { background: linear-gradient(90deg,#f43f5e,#fb7185); }

/* Simple chart for dashboard cards */
.dashboard-mini-chart {
  width: 100%;
  height: 40px;
  margin-top: 8px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}
.dashboard-mini-chart-bar {
  flex: 1;
  background: #c7d2fe;
  border-radius: 2px 2px 0 0;
  transition: height 0.5s;
}
