/* Progress Stepper Styles */
.progress-stepper {
  display: flex;
  justify-content: space-between;
  margin: 2em 0;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.progress-stepper::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e0e0;
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  font-weight: bold;
  color: #666;
}

.step-label {
  font-size: 14px;
  color: #666;
  text-align: center;
  max-width: 100px;
}

/* Step states */
.step.active .step-circle {
  border-color: #4CAF50;
  background-color: #4CAF50;
  color: white;
}

.step.active .step-label {
  color: #4CAF50;
  font-weight: bold;
}

.step.completed .step-circle {
  border-color: #4CAF50;
  background-color: #4CAF50;
  color: white;
}

.step.completed .step-circle::after {
  content: '✓';
  font-size: 20px;
}

.step.completed .step-label {
  color: #4CAF50;
}

/* Progress bar between steps */
.progress-line {
  height: 2px;
  flex-grow: 1;
  background-color: #e0e0e0;
  position: relative;
  top: 20px;
  z-index: 1;
}

.progress-line.active {
  background-color: #4CAF50;
}
