.for_styling_booking .cbp-fields-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 15px;
}
.for_styling_booking {
    display: block;
}

button#book-now-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
button#book-now-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0%;
  width: 100%;
  background-color: #ffffff !important;
  z-index: -1;
  transition: height 0.4s ease;
}
button#book-now-btn:hover::before {
  height: 100%;
}
button#book-now-btn {
  background-color: #00296D;
  font-family: "GeneralSans", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid #00296D;
  border-radius: 100px;
  padding: 24px 48px;
  z-index: 1;
  color: #fff;
}
#book-now-btn:hover {
  background-position: bottom;
  color: #00296D !important;
}
form#booking-trigger-form {
    display: flex;
    flex-direction: column;
}
.cbp-button-wrapper.button_booking_cls {
    display: grid;
    justify-content: end;
    margin-top: 30px;
}
.for_styling_booking select {
    background-color: transparent;
}
.cbp-modal {
  display: none;
  position: fixed; 
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999999;
  align-items: center;
  justify-content: center;
  font-family: "GeneralSans", Sans-serif;
}
.cbp-modal-content {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  width: 90%;
  margin: auto;
  position: relative;
}
.cbp-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f7fa;
  color: #00296D;
  font-size: 28px;
  border: 1px solid #e0e0e0;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cbp-close:hover {
  background: #00296D;
  color: #fff;
}














.step h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}

.step input, .step textarea {
  width: 100%;
  padding: 10px 12px;
  margin: 10px 0;
  font-size: 16px;
  box-sizing: border-box;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0px !important;
  border-bottom: 1px solid #ccc;
  background-color: transparent;
}

.step textarea {
  min-height: 40px;
  max-height: 120px;
}

.step button {
  background: #0073aa;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 15px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.step button:hover {
  background: #005f8d;
}

#card-element {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 10px;
}

.cbp-inline-form {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  background: #f9f9f9;
  padding: 20px 16px;
  border-radius: 32px;
}

.cbp-inline-form select,
.cbp-inline-form input[type="date"] {
  border-radius: 100px;
  padding: 12px 24px;
  border: 1px solid #ccc;
  font-size: 16px;
  min-width: 180px;
  background: #fff;
  outline: none;
  transition: border 0.2s;
}

.cbp-inline-form select:focus,
.cbp-inline-form input[type="date"]:focus {
  border: 1.5px solid #00296D;
}





.cbp-checkout-layout {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}

.cbp-summary {
  flex: 1;
  background: #f5f7fa;
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  font-size: 16px;
}

.cbp-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cbp-summary li {
  margin-bottom: 10px;
  color: #222;
}

.cbp-payment {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  font-size: 16px;
}

@media (max-width: 800px) {
  .cbp-checkout-layout {
    flex-direction: column;
    gap: 16px;
  }
}
