/* Modern Stepper Component */
.stepper-container {
  display: flex;
  width: 100%;
  padding: 24px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  border: 0.5px solid #EAE8FF;
  background: #E6F7ED;
  box-shadow: 0 -1.167px 1.167px 0 rgba(150, 161, 172, 0.12) inset;
  direction: rtl;
}

.stepper-step {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-title {
  color: #00B34F;
  text-align: right;
  font-family: Alexandria, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 115%;
}

.step-title.completed {
  color: #005124;
  font-weight: 500;
}

.step-dot {
  display: flex;
  width: 31px;
  height: 31px;
  padding: 10px 11px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 2px solid #B0E7C8;
  background: #00B34F;
}

.step-dot.completed {
  border: 0.5px solid #F1F2F9;
  background: #B0E7C8;
  padding: 10px 12px;
}

.step-number {
  color: #FFF;
  text-align: center;
  font-family: Alexandria, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 115%;
}

.step-check-icon {
  display: flex;
  width: 16px;
  height: 16px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.progress-bar-modern {
  height: 4px;
  flex: 1 0 0;
  border-radius: 2px;
  background: #00B34F;
}

/* Responsive design */
@media (max-width: 768px) {
  .stepper-container {
    padding: 16px;
    gap: 12px;
    max-width: 100%;
  }

  .step-title {
    font-size: 14px;
  }

  .step-dot {
    width: 28px;
    height: 28px;
    padding: 8px 9px;
  }

  .step-dot.completed {
    padding: 8px 10px;
  }

  .step-number {
    font-size: 12px;
  }

  .progress-bar-modern {
    height: 3px;
  }
}

@media (max-width: 480px) {
  .stepper-container {
    padding: 12px;
    gap: 8px;
  }

  .step-title {
    font-size: 12px;
  }

  .step-dot {
    width: 24px;
    height: 24px;
    padding: 6px 7px;
  }

  .step-dot.completed {
    padding: 6px 8px;
  }

  .step-number {
    font-size: 10px;
  }
}