/* === WRAPPER === */
.rbl-booking-form-wrapper {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 24px;
  max-width: 420px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* === SECTIONS === */
.rbl-section {
  margin-bottom: 22px;
}

.section-label {
  font-weight: 600;
  font-size: 15px;
  color: #222;
  margin-bottom: 4px;
}

/* === NIGHTLY PRICE === */
.rbl-nightly-rate {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.rbl-per-night {
  font-size: 15px;
  color: #666;
  font-weight: normal;
  margin-left: 4px;
}

/* === DATE GRID === */
.rbl-dates-grid {
  display: flex;
  gap: 12px;
}

.rbl-date-field {
  flex: 1;
}

.rbl-date-field label {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
  display: block;
}

/* === INPUTS === */
input[type="text"],
input[type="number"],
textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="number"]:focus,
textarea:focus {
  border-color: #008489;
  outline: none;
}

/* === GUESTS SECTION === */
.rbl-booking-guests {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.rbl-guest-column {
  flex: 1;
}

.rbl-guest-column label {
  font-size: 13px;
  font-weight: 500;
  color: #444;
  margin-bottom: 4px;
  display: block;
}

/* === PRICE PREVIEW === */
#rbl-price-preview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid #eee;
  font-weight: bold;
  font-size: 16px;
  color: #222;
}

/* === SUBMIT BUTTON === */
#rbl-submit-booking {
  display: block;
  width: 100%;
  background: #ff385c;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

#rbl-submit-booking:hover {
  background: #e02454;
}

/* === RESPONSIVE === */
@media (max-width: 480px) {
  .rbl-dates-grid,
  .rbl-booking-guests {
    flex-direction: column;
  }
}


/* === ADDITIONAL FEES == */
/* Extra Fee Breakdown */
.rbl-fee-breakdown, .rbl-notice {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #eee;
  padding-top: 10px;
}
.rbl-fee-breakdown{
  padding-top:13px;
  margin-bottom:15px
}

.rbl-fee-breakdown li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.rbl-fee-breakdown li span:last-child,
#rbl-tax-amount {
  font-weight: 500;
}

.rbl-notice{
    display: block;
    text-align: center;
    border: 0px;
    padding-top: 0px;
    margin: 0;
}

/* === EASE PICK OVERRIDES == */
*{
    /* --color-bg-unavailable: transparent; */
    /* --color-bg-unavailable: #d4d4d4; */
    --color-bg-locked: #d4d4d4;

}
/* :host {
  --color-bg-default: #3f51b5;
  --color-fg-primary: #ffc107;
  --color-fg-default: #fff;
  --color-fg-accent: #ff9800;
  --color-bg-inrange: #333;
  --day-width: 35px;
  --day-height: 30px;
}
/* increase start and end */
.container.range-plugin .calendar>.days-grid>.day.start,
.container.range-plugin .calendar>.days-grid>.day.end {
  font-weight: bold;
  transform: scale(1.2);
  z-index: 1;
} */

div.container.lock-plugin .calendar>.days-grid>.day.locked:not(.start):not(.end) {
    background-image: repeating-linear-gradient(360deg, transparent, var(--color-bg-locked) 2px, transparent 2px, transparent 26px) !important;
}
.container.lock-plugin .calendar>.days-grid>.day.locked:not(.start):not(.end) {
  background-image: repeating-linear-gradient(135deg, transparent, #ff9800 2px, transparent 0, transparent 4px);
}

/* MOSTRAR FLECHAS EN INPUT NUMBER */
    /* For Chrome, Safari, Edge, Opera (WebKit-based browsers) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    /* Ensure the browser treats them as spin buttons */
    -webkit-appearance: inner-spin-button;

    /* These are the key properties to force visibility */
    /* They override the browser's default 'opacity: 0' or 'display: none' */
    opacity: 1 !important;
    display: block !important; /* Or flex !important, depending on browser */

    /* It's good practice to ensure no extra margin is hiding them */
    margin: 0;
}
/* FIN MOSTRAR FLECHAS EN INPUT NUMBER */
.rbl-date-field span.dashicons,
.rbl-datefield  span.dashicons{
      /* align-self: center; */
    /* font-size: 14px; */
    height: 15px;
    font-size: 15px;
    color: #4f4f4f;
}
#rbl-nightly-breakdown .night-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 2px 0;
}