/* StepperTabs.css */
.stepper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 3rem;
  gap: 2.2rem;
  width: 100%;
  max-width: 900px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 90px;
  max-width: 120px;
  animation: fadeIn 0.7s cubic-bezier(0.4,0,0.2,1);
  transition: transform 0.18s cubic-bezier(0.4,0,0.2,1), box-shadow 0.18s, border-radius 0.18s;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(25,118,210,0.05);
  padding: 10px 4px 14px 4px;
}
.step:hover {
  transform: scale(1.045);
  box-shadow: 0 6px 32px rgba(25,118,210,0.13);
}
.step-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #90caf9;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #90caf9;
  z-index: 2;
}
.step.active .step-dot {
  background: #1976d2;
  box-shadow: 0 0 0 2px #1976d2;
}
.step-label {
  margin-top: 12px;
  font-size: 0.93rem;
  color: #1976d2;
  text-align: center;
  width: 90px;
  min-height: 2.1em;
  word-break: break-word;
  white-space: pre-line;
  line-height: 1.15;
  display: block;
  position: static;
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}
.step.active .step-label {
  font-weight: 700;
}


@media (max-width: 600px) {
  .stepper {
    gap: 0.5rem;
    max-width: 98vw;
  }
  .step-label {
    width: 70px;
    font-size: 0.8rem;
  }
}

/* Mobile responsive - 480px and below */
@media (max-width: 480px) {
  .stepper {
    gap: 0.3rem;
    max-width: 100%;
    margin-top: 1.5rem;
  }
  .step {
    min-width: 70px;
    max-width: 90px;
    padding: 8px 2px 12px 2px;
  }
  .step-dot {
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1.5px #90caf9;
  }
  .step.active .step-dot {
    box-shadow: 0 0 0 1.5px #1976d2;
  }
  .step-label {
    width: 65px;
    font-size: 0.7rem;
    margin-top: 8px;
  }
  .step-line {
    width: 40px;
    height: 2px;
    margin: 0 0.2rem;
  }
}
.step-line {
  width: 60px;
  height: 3px;
  background: #90caf9;
  margin: 0 0.5rem;
  z-index: 1;
}
