/*Booking Header CSS */
body {
  font-family: "Open Sans", sans-serif !important;
}
.languages {
  position: relative;
  display: inline-block;
}

.booking-btn-drop {
  cursor: pointer;
  background: #af936c;
  color: white;
  padding: 8px 14px;
  text-decoration: none;
}

/* Dropdown */
.booking-dropdown {
     position: absolute;
    right: -215px;
    top: 210%;
    width: 72vw;
    background: #252525;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s 
ease;
    z-index: 2;
    padding: 10px 20px;
    /* border-radius: 10px; */
    /* box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);*/
}

.booking-dropdown.show {
  opacity: 1;
  pointer-events: auto;
}

/* Booking section */
.booking-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Row layouts */
.form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px;
}

.first-line {
  justify-content: flex-start;
}

.second-line {
  justify-content: flex-start;
  /* border-top: 1px solid #ddd; */
  padding-top: 15px;
}

/* Form fields */
.form-group {
  display: flex;
  flex-direction: column;
  /* min-width: 200px; */
  margin-bottom: 22px;
  color: #af936c;
}
.form-group-date {
  display: flex;
  flex-direction: column;
  min-width: 200px;
  align-items: center;
  color: #af936c;
}
.form-group label {
  font-weight: 600;
  margin-bottom: 5px;
}

.form-group-date select,
.form-group-date input[type="text"] {
  border: none;
  border-bottom: 2px solid #ccc; 
  border-radius: 0;
  color:white;
  padding: 8px 0; 
  font-size: 15px;
  width: 100%;
  background-color: transparent; 
  transition: border-color 0.3s, box-shadow 0.3s;
  /* width: 100%; */
}

.form-group select,
.form-group input[type="text"] {
  border: none;
  border-bottom: 2px solid #ccc; 
  border-radius: 0;
  color:white;
  padding: 8px 0; 
  font-size: 15px;
  width: 100%;
  background-color: transparent; 
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Stay link */
.stay-link {
  display: inline-block;
  margin-top: 5px;
  font-size: 13px;
  color: #af936c;
  text-decoration: underline;
}
.cancel-link {
  display: inline-block;
  margin-top: 5px;
  font-size: 13px;
  color: #af936c;
  text-decoration: underline;
}

.moredays-link {
  display: inline-block;
  margin-top: 5px;
  font-size: 13px;
  color: #af936c;
  text-decoration: underline;
}
/* Guest counters */
.guest-options {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}
label {
  text-transform: uppercase;
  color: #af936c;
}
.guest-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  color: #af936c;
}

.counter {
  display: flex;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
  height: 38px;
  width: 90px;
  margin-top: 6px;
}

.counter button {
      background: #252525;
    border: none;
    color: white;
    padding: 6px 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

.counter input {
  width: 35px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 15px;
}

/* Search button */
.search-btn {
  background: #af936c;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  white-space: nowrap;
  width: 100px;
  /* margin-bottom: 23px; */
  margin-left: 22px;
}

.search-btn:hover {
  background: #967b52;
}

/* Responsive */
@media (max-width: 992px) {
  .form-row {
    flex-direction: column;
    align-items: stretch;
  }
}
.more-btn {
  background: #af936c;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  white-space: nowrap;
  width: 100px;
  margin-left: 22px;
  transition: background 0.3s ease;
}

.more-btn:hover {
  background: #967b52;
}

.form-group.action {
  transition: transform 0.5s ease-in-out;
}
.hidden-section {
  /* width: 320px; */
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.6s ease-in-out, opacity 0.4s ease-in-out,
    transform 0.6s ease-in-out;
  transform: translateX(30px);

  .guests {
    width: 250px;
  }
  .guests {
    width: 322px;
  }
}

/* When showing */
.hidden-section.show {
  max-width: 330px; /* wide enough for both hidden fields */
  opacity: 1;
  transform: translateX(0);
  padding-left: 10px;
}

/* When sections are shown, push the button */
.push-right {
  transform: translateX(0px); /* same as hidden-section width */
}
/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
.custom-hotel-select {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #f8f8f8;
  color: #333;
  font-size: 14px;
}

/* Style optgroup label */
.custom-hotel-select optgroup {
  background-color: #555; /* dark grey */
  color: #fff;
  font-weight: bold;
  padding: 4px 6px;
}

/* Style hotel options */
.custom-hotel-select option {
  background-color: #e9e9e9; /* light grey */
  color: #000;
  padding: 4px 8px;
}

/* When focused */
.custom-hotel-select:focus {
  outline: none;
  border-color: #888;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
   .bookingheader-tooltip {
        position: relative;
        display: inline-block;
    }

    .bookingheader-tooltip .bookingheader-tooltiptext {
       visibility: hidden;
    width: 140px;
    height: auto;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 10px !important;
    border-radius: 6px;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    text-transform: none !important;
    position: absolute;
    white-space: normal;
    z-index: 1;
    /* bottom: 0px; */
    top: -70%;
    left: -840%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
    }

  .bookingheader-tooltip .bookingheader-tooltiptext::after {
  content: "";
  position: absolute;
  top: 25%;
  left: 100%; /* arrow on the right edge */
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #555; /* 👈 arrow points left */
}

    .bookingheader-tooltip:hover .bookingheader-tooltiptext {
        visibility: visible;
        opacity: 1;
    }
    .flatpickr-day.selected,.flatpickr-day.startRange,.flatpickr-day.endRange,.flatpickr-day.selected.inRange,.flatpickr-day.startRange.inRange,.flatpickr-day.endRange.inRange,.flatpickr-day.selected:focus,.flatpickr-day.startRange:focus,.flatpickr-day.endRange:focus,.flatpickr-day.selected:hover,.flatpickr-day.startRange:hover,.flatpickr-day.endRange:hover,.flatpickr-day.selected.prevMonthDay,.flatpickr-day.startRange.prevMonthDay,.flatpickr-day.endRange.prevMonthDay,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.startRange.nextMonthDay,.flatpickr-day.endRange.nextMonthDay {
    background: #af936c !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    border-color: #af936c !important
}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
    -webkit-box-shadow:-10px 0 0 #af936c!important;
    box-shadow:-10px 0 0 #af936c!important;
 } 