* {
  box-sizing: border-box;
}

.whatsapp-form {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 16px;
  max-width: 370px;
  margin: auto;
  display: flex;
  flex-direction: column;
  color: white;
  font-family: sans-serif;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.whatsapp-form-inner {
  padding: 30px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.whatsapp-form h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
}

.whatsapp-form label {
  font-size: 12px;
  margin-bottom: 4px;
  opacity: 0.8;
  display: block;
}

.whatsapp-form input,
.whatsapp-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  font-size: 14px;
  background: #f5f5f5;
  color: #111;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.whatsapp-form input::placeholder {
  color: #888;
}

.whatsapp-form input[type="date"] {
  color: #888;
  background: #f5f5f5;
  padding: 12px 14px;
}

.whatsapp-form input[type="date"]:focus {
  color: #111;
}

.whatsapp-form button {
  border: none;
  padding: 16px;
  background: white;
  color: #111;
  font-weight: bold;
  font-size: 16px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 100%;
  cursor: pointer;
  margin: 0;
}

.whatsapp-form button:hover {
  background: #e2e2e2;
}

/* modal minimal */
.reserva-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
}
.reserva-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  color: #111;
}
.reserva-modal .close-modal {
  position: absolute;
  right: 10px;
  top: 8px;
  cursor: pointer;
}

/* Consistent spacing for reservas form */
.whatsapp-form .whatsapp-form-inner > div {
  margin-bottom: 0px;
}
.whatsapp-form input[type="text"],
.whatsapp-form select,
.whatsapp-form input[type="number"] {
  padding: 8px;
  box-sizing: border-box;
}
