.reservation-btn {
  background: #ff7a00;
  color: #fff;
  padding:5px 16px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

.res-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,.6);
  justify-content: center;
  align-items: center;
}

.res-modal-content {
  background: #fff;
  max-width: 420px;
  width: 100%;
  padding: 22px;
  border-radius: 18px;
  position: relative;
}

.res-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 22px;
  cursor: pointer;
}

#reservationForm input,
#reservationForm textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

#reservationForm button {
  width: 100%;
  background: #32c86e;
  color: #fff;
  padding: 14px;
  border-radius: 14px;
  border: none;
}



