.appointment-check {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 2px solid #d5dbe3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.appointment-check svg {
  width: 0.72rem;
  height: 0.72rem;
  stroke: currentColor;
  fill: none;
}
[data-service-option]:has(input:checked) {
  border-color: #1B3A6B;
  background: #e8fafa;
}
[data-service-option]:has(input:checked) .appointment-check,
.appointment-check.is-on {
  background: #1B3A6B;
  border-color: #1B3A6B;
  color: #fff;
}
[data-period-option]:has(input:checked) {
  border-color: #1B3A6B;
  background: #e8fafa;
  color: #1B3A6B;
}
[data-period-option] .appointment-check {
  position: absolute;
  top: 0.75rem;
  inset-inline-end: 0.75rem;
}
.appointment-success-icon {
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1.25rem;
  border-radius: 999px;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(34, 197, 94, 0.55);
}
.appointment-success-icon svg {
  width: 2rem;
  height: 2rem;
  stroke: #fff;
  fill: none;
}
.appointment-another-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: #1B3A6B;
  color: #fff;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}
.appointment-another-btn:hover {
  background: #152d54;
}
