.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}
.progress-step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.progress-line {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  height: 4px;
  width: 100%;
  background-color: #dee2e6;
  z-index: 0;
}
.progress-line-fill {
  position: absolute;
  top: 1.5rem;
  left: 0;
  height: 4px;
  background-color: var(--bs-success);
  z-index: 1;
  transition: width 0.3s;
}
.step-label {
  margin-top: 0.05rem;
  font-size: 0.9rem;
}