/* Provider override wizard (PD-28895) */

.add-override-btn {
  background-color: #a98fd6;
  color: #fff;
  border: none;
}
.add-override-btn:hover {
  background-color: #9579cc;
  color: #fff;
}

.override-wizard {
  border-color: #b79ce0;
}

.wizard-step {
  border: 1px solid #e6e6ea;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  background: #fcfcfd;
}
.wizard-step.is-current {
  background: #fff;
  border-color: #d9c8f2;
}

.wizard-step-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: none;
  border: none;
  text-align: left;
}

.wizard-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #d7d7de;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}
.is-current .wizard-badge {
  background: #7c4dc4;
}
.is-done .wizard-badge {
  background: #b79ce0;
}

.wizard-title {
  font-weight: 600;
}
.wizard-sub {
  color: #9a9aa2;
  font-size: 0.9rem;
}
.is-current .wizard-sub {
  color: #6c757d;
}
.wizard-step:not(.is-current) .wizard-title {
  color: #6c757d;
}

.wizard-step-body {
  padding: 0 1rem 1.1rem 3.2rem;
}
