.booking-mode-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 28px;
  padding: 6px;
  border: 1px solid #d9e4ee;
  border-radius: 8px;
  background: #f7fafc;
}

.booking-mode-switch__button {
  min-height: 52px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #66758a;
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}

.booking-mode-switch__button.is-active {
  background: #009fe3;
  color: #ffffff;
}

.booking-mode-panel.hidden {
  display: none;
}

.signature-mode-entry {
  margin-bottom: 30px;
  padding: 24px 22px;
  border: 1px solid #bdd5e4;
  border-radius: 8px;
  background: #f7fafc;
  text-align: center;
}

.signature-mode-entry strong {
  display: block;
  color: #143f8f;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
}

.signature-mode-entry span {
  display: block;
  margin-top: 8px;
  color: #66758a;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.signature-mode-entry__button {
  min-width: 180px;
  min-height: 48px;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #009fe3;
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 640px) {
  .booking-mode-switch {
    grid-template-columns: 1fr;
  }

  .booking-mode-switch__button {
    min-height: 48px;
    font-size: 16px;
  }

  .signature-mode-entry {
    padding: 22px 18px;
  }

  .signature-mode-entry__button {
    width: 100%;
  }
}