/* General Layout */
div[data-page-title="Guest Holiday Information"]{
  background-color: #F9F9F9;
}
.c-page-header {
  background-color: rgba(31, 103, 92, .8); 
}
.fdry-auth-container {
  display: flex;
  justify-content: center;
  padding: 150px 0 50px;
}

.column h1{
  max-width: 600px;
  font-size: 66px;
  line-height: 77px;
  color: #fff;
  font-family: 'Prata', serif;
}


.fdry-auth-box {
  background: #ffffff;
  padding: 2.5rem 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  max-width: 420px;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.fdry-auth-box h2 {
  font-size: 36px;
  line-height: 42px;
  text-align: center;
  font-family: 'Prata', serif;
}

.fdry-auth-box label {
  font-size: 18px;
  line-height: 18px;
  font-weight: 300;
  color: #888888;
  margin-top: 25px;
}

.fdry-auth-box input {
  width: 100%;
  padding: 0 5px;
  border: 0px solid #fff;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 15px;
  box-shadow: none;
}

.fdry-auth-box button {
  margin: 25px 0;
  width: 100%;
  padding: 0.85rem;
  background-color: #FFF;
  color: #000;
  border: none;
  border-radius: 0px;
  border: 1px solid #000;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.fdry-auth-box button:hover {
  background-color: #003333;
  color: #fff;
}

.link-box{
  text-align: center;
  font-size: 14px;
  color: #003333;
  
}

.link-box:hover{
  text-decoration: underline;
}

.fdry-links {
  margin-top: 40px;
  border-top: 1px solid #003333; 
  padding: 15px 0;
  font-size: 14px;
  text-align: center;
}

.fdry-links a {
  color: #003333;
  text-decoration: none;
}

.fdry-error {
  color: #b00020;
  background: #ffe6e6;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-weight: 500;
  position: fixed;
  max-width: 600px;
  text-align: center;
  bottom: 5%;
  right: 5%;
  width: 90%;
}

.fdry-success {
  color: #0a7c2f;
  background: #e6ffe6;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Dashboard Specific */
.fdry-dashboard-container {
  padding: 150px 050px;
}

.fdry-dashboard {
  
  margin: auto;
}

.fdry-dashboard h2 {
  font-size: 28px;
  font-family: 'Prata', serif;
}

.fdry-account-id {
  font-size: 14px;
  color: #777;
  margin-bottom: 2rem;
}

.fdry-dashboard-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fdry-dashboard-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 40px 25px;
  border-radius: 10px;
  text-decoration: none;
  color: #003333;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  font-size: 28px;
  line-height: 28px;
}

.fdry-dashboard-item:hover {
  background: #f0f5f5;
  color: #003333;
}

/* Toggle Sections */
.fdry-dashboard-toggle-group {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fdry-dashboard-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 40px 25px;
  border-radius: 10px;
  text-decoration: none;
  color: #003333;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  font-size: 28px;
  line-height: 28px;
}

.fdry-dashboard-item:hover {
  background: #f0f5f5;
  color: #003333;
}

.fdry-toggle-content {
  display: none;
  background: #fff;
  border: 0px;
  border-radius: 0 0 8px 8px;
  font-size: 15px;
  line-height: 1.5;
  margin-top: -25px;
  padding: 50px 15px !important;
}

.fdry-toggle-content.fdry-show {
  display: block;
}


.fdry-toggle-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1rem;
}

.fdry-toggle-content.fdry-show {
  padding: 1rem;
}


/* === Booking Form Container === */
.fdry-booking-form {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
}

/* === Step Indicator === */
.fdry-booking-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 0 1rem;
  counter-reset: step;
}

.fdry-booking-steps .step {
  flex: 1;
  text-align: center;
  position: relative;
  font-size: 0.95rem;
  color: #aaa;
  padding-bottom: 10px;
}

.fdry-booking-steps .step span {
  display: inline-block;
  background-color: #ccc;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  margin-bottom: 5px;
  font-weight: bold;
}

.fdry-booking-steps .step.active {
  color: #1d3f3e;
}

.fdry-booking-steps .step.active span {
  background-color: #1d3f3e;
}

/* === Section Titles === */
.fdry-booking-form h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  color: #1d3f3e;
}

/* === Navigation Buttons === */
.fdry-booking-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.fdry-booking-nav button {
  padding: 0.8rem 1.5rem;
  border: 2px solid #1d3f3e;
  background-color: white;
  color: #1d3f3e;
  font-weight: bold;
  font-size: 0.95rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fdry-booking-nav button:hover {
  background-color: #1d3f3e;
  color: white;
}

/* === Terms Checkbox === */
.fdry-booking-form label input[type='checkbox'] {
  margin-right: 10px;
}

.fdry-booking-form a {
  color: #1d3f3e;
  text-decoration: underline;
}

/* === Form Layout Fixes (for ACF) === */
.fdry-dashboard-container .acf-field-group{
  padding: 0px;
  border: 0px !important;
}
.fdry-dashboard-container .acf-fields > .acf-field{
  border: 0px;
}


.fdry-dashboard-container .acf-fields.-border,
.fdry-dashboard-container .acf-field[data-width] + .acf-field[data-width]{
  border: 0px;
}

.fdry-dashboard-container .acf-field-group > .acf-label label{
  font-size: 24px !important;
  font-size: 28px !important;
  text-align: center !important;
  font-family: 'Prata', serif !important;
  color: #000 !important;
}
 
.fdry-dashboard-container .acf-field-group .acf-input label { 
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #888888;
  margin-top: 25px;
  text-align: left; 
}


.fdry-dashboard-container .acf-field  input {
  width: 100%;
  padding: 0 5px;
  border: 0px solid #fff;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 15px;
  box-shadow: none;
}

.fdry-dashboard-container .acf-field  button {
  margin: 25px 0;
  width: 100%;
  padding: 0.85rem;
  background-color: #FFF;
  color: #000;
  border: none;
  border-radius: 0px;
  border: 1px solid #000;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.fdry-dashboard-container .acf-field  button:hover {
  background-color: #003333;
  color: #fff;
}

.fdry-dashboard-container .acf-field-message{
  display: flex;
  flex-direction: column-reverse;
}

.fdry-dashboard-container .acf-field-message .acf-label{ 
  display: none;
}

.fdry-dashboard-container .acf-field-message[data-name="number_in_group"] .acf-input{
  text-align: center;
}

.fdry-dashboard-container .acf-field-group[data-name="confirmation_submit"] > .acf-label{
  display: none !important; 
}


.conditions-link{
  color: rgba(31, 103, 92, 1);
    text-align: center;
    display: block;
    margin: auto;
}



.fdry-dashboard-container .acf-field-checkbox label{
  display: flex;
    max-width: 400px;
    margin: auto;
    align-items: start;
    gap: 10px;
}


.fdry-dashboard-container .acf-field-checkbox .acf-label{
  display: none;
}

.fdry-dashboard-container .acf-field-checkbox li input[type="checkbox"]{
  width: 30px;
  height: 30px;
}



.fdry-dashboard-container .acf-field-radio label{
  display: flex;
  padding: 0px;
    margin: auto;
    align-items: start;
    gap: 10px;
}

.fdry-dashboard-container .acf-field-radio li input[type="radio"]{
  width: 25px;
  height: 25px; 
}


.fdry-dashboard-container .acf-field-repeater{
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.fdry-dashboard-container .acf-field-repeater .acf-label{
  display: none;
}
.fdry-dashboard-container .acf-table{
  border: 0px;
}



.acf-row-handle{
  display: none;
}

.fdry-dashboard-container .acf-table thead{
  display: none;
}

.fdry-dashboard-container .acf-table tbody{
  border: 0px; 
}

.fdry-dashboard-container .acf-table > thead > tr > th{
  border: 0px;
}

.acf-repeater-add-row{
  float: left !important;
    background: #fff !important;
    color: rgba(31,103,92,1) !important;
    padding: 10px 0px;
}

.acf-repeater-add-row:hover{
  color: #000 !important;
  background: #fff !important;
}

.acf-repeater .acf-row-handle.order + td{
  border: 0px;
  padding: 10px 0px;
}


.flex-colum{
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 45px;
  border-bottom: 1px solid #ccc; 
} 

.flex-colum h2{
  width: 100%;
}

.flex-colum .fdry-account-id{
    text-align: right;
    margin: 0px;
    width: 100%;
}

.fdry-logout-link{
  margin-top: 1rem;
}

.select2-container.-acf .select2-selection{
  border-color: #888888;
    border: 0px;
    border-bottom: 1px solid #888888;
    border-radius: 0px; 
    padding: 8px 0px 5px; 
    height: 40px;
}


/* === Responsive adjustments === */
@media screen and (max-width: 768px) {
  .fdry-booking-steps {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .fdry-booking-steps .step {
    flex: none;
  }

  .acf-form .acf-fields {
    grid-template-columns: 1fr !important;
  }

  .fdry-booking-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .fdry-booking-nav button {
    width: 100%;
    text-align: center;
  }


  .flex-colum{
    flex-direction: column;
  } 
  
  .flex-colum h2{
    text-align: center;
    margin-bottom: 20px;
  }
  
  .flex-colum .fdry-account-id{
      text-align: center;
  }


}
