.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #6c757d;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #6c757d;
  z-index: 1;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.step.active .circle,
.step.completed .circle {
  background-color: #0d6efd; /* Blau wie Progressbar Schritt 1/2 */
  color: #fff;
  border-color: #0d6efd;
}

.label {
  margin-top: 5px;
  font-size: 0.9rem;
  text-align: center;
}

.line {
  width: 50px;
  height: 2px;
  background-color: #6c757d;
  margin: 0 10px;
  position: relative;
  top: -17px;
}

.step.completed + .line {
  background-color: #0d6efd; /* Linie grün/blau für Fortschritt */
}