.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: 'Raleway', Helvetica, Arial, Lucida, sans-serif;
    font-size: 12px;
  min-width: 52px;
  color: #000;
	letter-spacing: .25em;
    text-transform: uppercase;
    line-height: 1.6em;
}

/* Input mezők (date és vendégek száma) */
#checkin,
#checkout,
#guests {
  font-family: "Josefin Sans", sans-serif;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: 0px;
  color: #4d4d4d;
  padding: 20px 12px 18px 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: 50px;
min-width: 0px !important;
  padding-left: 14px;
  padding-right: 0;
	font-size: 17px;
	font-weight: 300;
}

/* Input fókuszban */
#checkin:focus,
#checkout:focus,
#guests:focus {
  border-color: #4d4d4d;
  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 */
.guest-selector button {
  background-color: transparent;
  border: 0px solid #4d4d4d;
  color: #4d4d4d;
  font-size: 28px;
  width: 28px;
  height: 28px;
  border-radius: 0px;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 200;
}

.guest-selector button:hover {
  background-color: transparent;
  border-color: none;
	color: #b56953;

}

/* Submit gomb */
#booking-submit {
  background-color: transparent;
  color: #000;
  border: 1px solid rgba(0, 0, 0, .6);
  padding: 18px 30px;
  border-radius: 0px;
   font-family: Raleway, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .25em;
    text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

#booking-submit:hover {
  background-color: #b56953;
  border-color: #b56953;
	color: #fff;
	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: #4d4d4d;
  opacity: 1; /* Safari esetén is */
	font-size: 17px;
	font-weight: 300;
	line-height: 2em;
	
}

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

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

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

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