/* Основная кнопка "Записаться" — любой формат */
input.reserve_time_btn,
button.reserve_time_btn,
a.reserve_time_btn {
  background-color: #ff69b4 !important;
  color: white !important;
  padding: 12px 24px !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  text-align: center !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: background 0.3s ease !important;
}

/* Эффект при наведении */
input.reserve_time_btn:hover,
button.reserve_time_btn:hover,
a.reserve_time_btn:hover {
  background-color: #e052a0 !important;
}

/* Центрирование кнопки */
input.reserve_time_btn,
button.reserve_time_btn,
a.reserve_time_btn {
  margin: 20px auto !important;
  display: block !important;
}

/* Добавляем кнопку Preisliste рядом с Buchen */
button.reserve_time_btn::after {
  content: "Preisliste";
  display: inline-block;
  background-color: #ff69b4;
  color: white;
  padding: 12px 24px;
  margin-left: 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Эффект наведения */
button.reserve_time_btn:hover::after {
  background-color: #e052a0;
}

/* Кликабельность – через абсолютную прозрачную ссылку сверху */
button.reserve_time_btn::before {
  content: "";
  position: absolute;
  right: 0;
  width: 140px;
  height: 48px;
  margin-left: 20px;
  z-index: 10;
}

/* Невидимая ссылка поверх псевдо-кнопки */
button.reserve_time_btn {
  position: relative;
}

/* Сам переход при клике */
button.reserve_time_btn::before {
  content: "";
  position: absolute;
  right: 0;
  width: 140px;
  height: 48px;
  margin-left: 20px;
  z-index: 999;
  background: transparent;
}
button.reserve_time_btn::before {
  pointer-events: all;
}
button.reserve_time_btn:hover::before {
  cursor: pointer;
}
