#ik-multi-step-form {
  max-width: 400px;
  margin: auto;
  font-family: sans-serif;
}

.ik-progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.ik-progress-bar .step {
  width: 30%;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
}
.ik-progress-bar .step.active {
  background: #3f0d91;
}

.ik-step {
  display: none;
}
.ik-step.active {
  display: block;
}

button {
  background-color: #3f0d91;
  color: #fff;
  padding: 10px 20px;
  border: none;
  margin-top: 10px;
  cursor: pointer;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.slot-button {
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 5px;
  cursor: pointer;
}
.slot-button.active {
  border-color: #3f0d91;
  background-color: #e7e2fa;
}