.elementor-20421 .elementor-element.elementor-element-675fdc2{--display:flex;}/* Start custom CSS for container, class: .elementor-element-675fdc2 *//* ================================
   HoK Booked Windows (GF-safe)
   ================================ */

/* Ensure our wrapper always behaves like a full-width block */
.gform_wrapper .gfield .hok-busy-ui{
  display: block !important;
  width: 100% !important;
  margin-top: 14px !important;
  clear: both !important;
}

/* Make sure GF/Elementor doesn't collapse/inline our injected elements */
.gform_wrapper .gfield .hok-busy-ui *{
  box-sizing: border-box;
}

/* Card styling */
.gform_wrapper .gfield .hok-busy-card{
  border: 1px solid rgba(0,0,0,.12) !important;
  border-radius: 12px !important;
  padding: 12px 14px !important;
  background: #fff !important;
  max-width: 720px !important;
}

/* Header row */
.gform_wrapper .gfield .hok-busy-head{
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
}

.gform_wrapper .gfield .hok-busy-title{
  font-weight: 600 !important;
}

/* Toggle button (override GF button styling) */
.gform_wrapper .gfield .hok-busy-toggle{
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 1px solid rgba(0,0,0,.18) !important;
  border-radius: 999px !important;
  padding: 6px 12px !important;
  background: #fff !important;
  cursor: pointer !important;
  font-size: 0.9em !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
}

.gform_wrapper .gfield .hok-busy-toggle:hover{
  background: rgba(0,0,0,.04) !important;
}

.gform_wrapper .gfield .hok-busy-toggle:focus{
  outline: none !important;
}

/* Body spacing */
.gform_wrapper .gfield .hok-busy-status{
  margin-top: 10px !important;
  opacity: .85 !important;
  line-height: 1.45 !important;
}

.gform_wrapper .gfield ul.hok-busy-list{
  margin: 10px 0 0 !important;
  padding-left: 18px !important;
  list-style: disc !important; /* Force bullets back on */
}

.gform_wrapper .gfield li.hok-busy-item{
  margin: 6px 0 !important;
  font-weight: 500 !important;
  list-style: disc !important;
}

/* Marker color (works in modern browsers; harmless otherwise) */
.gform_wrapper .gfield li.hok-busy-item::marker{
  color: #999 !important;
}

.gform_wrapper .gfield .hok-busy-note{
  margin-top: 10px !important;
  font-size: 0.9em !important;
  opacity: .75 !important;
}
/* Put the toggle under the title (stack instead of side-by-side) */
.gform_wrapper .gfield .hok-busy-head{
  flex-direction: column !important;
  align-items: flex-start !important;
}

/* Give the button a little breathing room below the title */
.gform_wrapper .gfield .hok-busy-toggle{
  margin-top: 8px !important;
}
/* ---------------------------------
   FIX 1: Restore button text
---------------------------------- */
.gform_wrapper .gfield .hok-busy-toggle{
  color: #333 !important;
  font-family: inherit !important;
  line-height: 1.2 !important;
  min-height: 32px;
}

/* Ensure button text is visible */
.gform_wrapper .gfield .hok-busy-toggle::before{
  content: none !important;
}

/* ---------------------------------
   FIX 2: Space between date + card
---------------------------------- */
#field_1_16 .ginput_container{
  margin-bottom: 14px !important;
}

/* Extra breathing room for the card itself */
#field_1_16 .hok-busy-ui{
  margin-top: 16px !important;
}

/* ---------------------------------
   Optional polish
---------------------------------- */
.gform_wrapper .gfield .hok-busy-card{
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.hok-busy-actions{
  display:flex;
  justify-content:flex-start;
}
#field_1_16 .ginput_container{
  margin-bottom: 20px;
}
/* ================================
   FIELD 1_16 layout fix (input + icon row, card below)
   ================================ */

/* Turn the date container into a 2-row grid:
   Row 1: date input + calendar icon
   Row 2: booking info box (hok-busy-ui)
*/
#field_1_16 .ginput_container.ginput_container_date{
  display: grid !important;
  grid-template-columns: minmax(220px, 260px) auto; /* date width + icon */
  grid-template-areas:
    "date icon"
    "busy busy";
  align-items: center !important;
  column-gap: 10px !important;
  row-gap: 14px !important;  /* space between date field and booking box */
}

/* Date input stays in the left cell */
#field_1_16 #input_1_16{
  grid-area: date !important;
  width: 100% !important;
}

/* Calendar icon stays beside the input (and NEVER drifts into the card) */
#field_1_16 .ui-datepicker-trigger{
  grid-area: icon !important;
  position: static !important;
  transform: none !important;
  margin: 0 !important;
  cursor: pointer;
}

/* Booking UI always below */
#field_1_16 .hok-busy-ui{
  grid-area: busy !important;
  width: 100% !important;
  margin-top: 0 !important; /* row-gap handles spacing */
}

/* Since row-gap handles spacing, remove the old container bottom margin effect */
#field_1_16 .ginput_container{
  margin-bottom: 0 !important;
}/* End custom CSS */