.booking-form {
  background: #f8f9fa;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  width: 98%;
  max-width: 1080px;
  margin: 20px auto;
  border-radius: 10px;
}

.booking-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: flex-end;
}

.booking-form .form-group {
  display: flex;
  flex-direction: column;
}

.booking-form label {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

.booking-form input[type="date"],
.booking-form select {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
  width: 220px !important;
  margin:0 0 15px 0 !important;
}

.booking-form button {
  padding: 12px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  margin:0 0 15px 0 !important;
  width: 220px !important;
}

.booking-form button:hover {
  background-color: #333;
}

@media (max-width: 600px) {
.booking-form {
  padding: 20px 0;
}
  .booking-form .form-row {
    flex-direction: column;
  align-items: flex-start;
  }
.booking-form button, .booking-form input[type="date"],
.booking-form select {
  width: 200px !important;
  margin:0 0 5px 0 !important;
}
}