.stepper-item {
  z-index: 1000000;
}

.stepper-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #dee2e6;
  z-index: -1;
}

.stepper-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  font-weight: 600;
  color: #6c757d;
  font-size: 14px;
  transition: all 0.3s ease;
  z-index: 1;
}

.stepper-label {
  font-size: 0.9rem;
  color: #495057;
  font-weight: 500;
  word-break: break-word;
}

.stepper-item.active .stepper-number {
  background: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
  box-shadow: 0 0 6px rgba(13, 110, 253, 0.4);
}

.stepper-item.active .stepper-label {
  color: #0d6efd;
  font-weight: 600;
}

.stepper-item.completed .stepper-number {
  background: #198754;
  border-color: #198754;
  color: #fff;
}

.stepper-item.completed::after {
  background: #198754;
}

.stepper-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #dee2e6;
  z-index: -10;
}

@media (max-width: 576px) {
  .stepper-label {
    font-size: 0.75rem;
  }
  .stepper-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}
