.bha-booking-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
	justify-content: center;
  gap: 15px;
  font-family: Arial, sans-serif;
  color: white;
}

/* Label-ek stílusa */
.bha-booking-form > label {
  white-space: nowrap;
  margin-right: 5px;
  font-weight: normal;
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
  min-width: 52px;
  color: white;
}

/* Input mezők (date és vendégek száma) */
#checkin,
#checkout,
#guests {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  color: white;
  padding: 11px 12px;
  font-size: 14px;
  min-width: 140px;
  text-align: center;
  outline: none;
  transition: border-color 0.3s ease;
}

#checkin,
#checkout {
  -webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
  display: inline-block;
  flex-shrink: 0;
}

#checkin,
#checkout,
#guests-plus {
	margin-right:0px;
}

/* Vendégszám input kisebb, max 2 karakter széles */
#guests {
  width: 44px;
min-width: 0px !important;
  padding-left: 14px;
  padding-right: 0;
}

/* Input fókuszban */
#checkin:focus,
#checkout:focus,
#guests:focus {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Vendégszám selector */
.guest-selector {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Vendégszám gombok (szolidak, fehér kerettel) */
.guest-selector button {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
  font-size: 18px;
  font-weight: bold;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.guest-selector button:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: white;
}

/* Submit gomb */
#booking-submit {
  background-color: #000;
  color: white;
  border: none;
  padding: 11px 30px;
  border-radius: 8px;
  font-weight: normal;
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

#booking-submit:hover {
  background-color: #fff;
  border-color: white;
	color: #000;
	transition: all 0.3s ease;
}

/* Reszponzív */
@media (max-width: 980px) {
  .bha-booking-form {
    flex-wrap: wrap;
  }
  .bha-booking-form > label,
  #checkin,
  #checkout,
  .guest-selector,
  #booking-submit {
    flex: 1 1 100%;
    min-width: auto;
	text-align:center;
 	max-width: 80%;
  }
	
  .guest-selector {
    justify-content: center;
  }
  #guests {
    width: 60px;
  }
}

@media (max-width: 1056px) {
	#booking-submit {
		padding: 11px 10px;
	}
}

@media (max-width: 1020px) {
	#checkin,
	#checkout {
		padding: 11px 0px;
	}
}


@media (max-width: 1120px) {
	 .bha-booking-form {
    gap: 10px;
  }
}

/* Alapértelmezett placeholder */
.bha-booking-form input::placeholder {
  color: white;
  opacity: 1; /* Safari esetén is */
}

/* Firefox külön prefix */
.bha-booking-form input::-moz-placeholder {
  color: white;
  opacity: 1;
}

/* Internet Explorer 10-11 */
.bha-booking-form input:-ms-input-placeholder {
  color: white;
}

/* Microsoft Edge */
.bha-booking-form input::-ms-input-placeholder {
  color: white;
}

/* Firefox */
#guests {
  -moz-appearance: textfield !important;
}
