/* Wrapper griglia per i campi */
.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

/* Campi input */
.personalizza-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

/* Pulsante */
.personalizza-input-button {
  display: block;
  width: 100%;
  padding: 14px;
  background-color: #FCEA10; /* Cambia se hai un colore brand */
  color: #222d59;
  font-size: 18px;
  font-weight: 900;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.personalizza-input-button:hover {
  background-color: #222d59; /* Hover */
  color: #FCEA10;
}

/* Responsive: da 768px in giù, 1 colonna sola */
@media (max-width: 768px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
}

.personalizza-input:focus {
  border-color: #FCEA10;
  outline: none;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.febiam-group-booking-banner {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-left: 4px solid #222d59;
  border-radius: 6px;
  background: #fff8c4;
  color: #222d59;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.febiam-group-booking-banner[hidden] {
  display: none;
}

.febiam-group-booking-banner a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

