.modal-booking {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-booking h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.modal-booking-content {
  background: url('../../assets/img/backgrounds/modal_background.png');
  padding: 20px;
  border-radius: 10px;
  width: 550px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-modal-booking {
  float: right;
  font-size: 20px;
  cursor: pointer;
}

.booking-form .booking-form-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
  gap: 10px;
}

.booking-label {
  margin-bottom: 10px;
}

.booking-form input[type="text"],
.booking-form input[type="date"],
.booking-form input[type="number"],
.booking-form select {
  width: 250px;
  height: 26px;
  border-radius: 50px;
  padding: 5px;
  border: none;
}

.booking-form .booking-form-group-comments {
  display: flex;
  flex-direction: row;
  text-align: left;
  margin-top: 10px;
}

.booking-form-group-comments input[type="text"] {
  width: 510px;
  height: 26px;
  border-radius: 50px;
  border: none;
}

.booking-form-action {
  display: flex;
  flex-direction: row;
  margin-top: 15px;
}

.booking-form-action button {
  width: 150px;
  background-color: #628B35;
  padding: 5px 8px;
  color: #fff;
  border-radius: 50px;
  margin: 0 auto;
}

@media (max-width: 768px) { 
  .modal-booking-content {
    background: url('../../assets/img/backgrounds/modal_background_mobile.png');
    width: 290px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .booking-form .booking-form-group {
    flex-direction: column;
  }

  .booking-form-group-comments input[type="text"] {
    width: 250px;
  }
}
