.estel-booking,
.estel-manage-appointment {
  color: inherit;
  font: inherit;
}

.estel-booking-shell,
.estel-manage-appointment {
  max-width: 760px;
  margin: 0 auto;
}

.estel-booking-service {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.estel-booking-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.estel-booking-steps li {
  border-bottom: 3px solid currentColor;
  opacity: 0.35;
  padding: 0.45rem 0;
  font-size: 0.9rem;
}

.estel-booking-steps .is-active {
  opacity: 1;
}

.estel-booking-panel,
.estel-manage-form {
  display: grid;
  gap: 1rem;
}

.estel-field-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.estel-booking label,
.estel-manage-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.estel-booking input,
.estel-booking select,
.estel-booking textarea,
.estel-manage-form input,
.estel-manage-form textarea {
  border: 1px solid currentColor;
  border-radius: 4px;
  color: inherit;
  font: inherit;
  min-height: 42px;
  padding: 0.65rem 0.75rem;
}

.estel-booking textarea,
.estel-manage-form textarea {
  min-height: 96px;
}

.estel-slot-list {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
}

.estel-slot,
.estel-primary,
.estel-secondary,
.estel-link-button,
.estel-manage-form button {
  border: 1px solid currentColor;
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
  min-height: 42px;
  padding: 0.65rem 1rem;
}

.estel-primary,
.estel-slot.is-selected {
  background: currentColor;
  color: #fff;
}

.estel-secondary,
.estel-link-button,
.estel-slot {
  background: transparent;
  color: inherit;
}

.estel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.estel-check {
  align-items: start;
  display: flex !important;
  gap: 0.6rem !important;
  font-weight: 400 !important;
}

.estel-check input {
  min-height: auto;
  margin-top: 0.25rem;
}

.estel-help,
.estel-error,
.estel-result,
.estel-booking-notice {
  font-size: 0.95rem;
}

.estel-error,
.estel-result {
  color: #b42318;
}

.estel-review {
  display: grid;
  gap: 0.5rem 1rem;
  grid-template-columns: minmax(120px, 0.35fr) 1fr;
}

.estel-review dt {
  font-weight: 700;
}

.estel-booking-success {
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 1rem;
}

@media (max-width: 640px) {
  .estel-field-grid,
  .estel-booking-steps,
  .estel-review {
    grid-template-columns: 1fr;
  }
}

