/* Ligne du temps du formulaire citoyen */
.formulaire-etapes-wrapper {
  margin: 24px 0 16px;
}

.formulaire-etapes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
}

.formulaire-etapes-border {
  flex: 1;
  height: 2px;
  background: #d0d0d5;
  margin: 0 4px;
}

.etape {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 60px;
}

.etape-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #999;
  background: #f0f0f5;
  font-weight: 600;
}

/* États de la timeline */
.timeline-step--disabled .etape-num {
  background: #e3e3e8;
  border-color: #b5b5bf;
  color: #8a8a96;
}
.timeline-step--disabled span:last-child {
  color: #9b9ba5;
}

.timeline-step--current .etape-num {
  background: #2e7d32;
  border-color: #2e7d32;
  color: #fff;
}
.timeline-step--current span:last-child {
  color: #2e7d32;
  font-weight: 600;
}

.timeline-step--done .etape-num {
  background: #e8f5e9;
  border-color: #2e7d32;
  color: #2e7d32;
}
.timeline-step--done span:last-child {
  color: #333;
}

/* Responsive : on évite que ça casse sur mobile */
@media (max-width: 600px) {
  .formulaire-etapes {
    flex-wrap: wrap;
    row-gap: 12px;
  }
  .formulaire-etapes-border {
    display: none;
  }
}