
.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.progress-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.progress-step::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid var(--gray-light);
  width: 100%;
  top: 15px;
  left: -50%;
  z-index: 2;
}

.progress-step::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid var(--gray-light);
  width: 100%;
  top: 15px;
  left: 50%;
  z-index: 2;
}

.progress-step .step-number {
  position: relative;
  z-index: 5;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--gray-medium);
  color: var(--gray-light);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-bottom: 6px;
}

.step-label {
  font-size: 14px;
  color: var(--gray-medium);
  font-weight: 500;
}

/* Styles pour l'étape active */
.progress-step.active {
  font-weight: bold;
}

.progress-step.active .step-number {
  background-color: var(--primary-color);
  color: white;
}

.progress-step.active .step-label {
  color: var(--primary-color);
}

/* Styles pour les étapes complétées */
.progress-step.completed .step-number {
  background-color: var(--primary-color);
  color: white;
}

.progress-step.completed::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid var(--primary-color);
  width: 100%;
  top: 15px;
  left: 50%;
  z-index: 3;
}

/* Masquer les lignes pour la première et dernière étape */
.progress-step:first-child::before {
  content: none;
}

.progress-step:last-child::after {
  content: none;
}

/* Version responsive */
@media (max-width: 768px) {
  .step-label {
    font-size: 12px;
  }
  
  .step-number {
    width: 25px;
    height: 25px;
  }
} 