.onboarding-progress {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
}

.step-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ccc;
}

.progress-step.active .step-circle {
  background: #007bff;
}

.progress-step.complete .step-circle {
  background: #28a745;
}
