:root {
    --primary: #026DA7 !important;
    --secondary: #1197C7 !important;
    --light: #f8f9fa !important;
    --dark: #212529 !important;
    --error: #f72585 !important;
    --success: #4cc9f0 !important;
}
.block{
    display: block !important;
}
a.paylink {
    text-decoration: underline;
}

.booking-container {
    max-width: 500px !important;
    margin: 0 0 0 auto !important;
    background: white !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    padding: 0 !important;
}

.booking-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: white !important;
    padding: 20px !important;
    text-align: center !important;
}

.booking-header h1 {
    font-size: 24px !important;
    margin-bottom: 5px !important;
}

.currency-note {
    font-size: 14px !important;
    opacity: 0.9 !important;
}

.booking-section {
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.booking-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.section-title svg {
    margin-right: 10px;
}

.form-group {
    margin-bottom: 10px;
}

.check-availability .form-group{
    margin: 0;
}

label {
    display: block ;
    margin-bottom: 8px;
    font-size: 14px ;
    font-weight: 600;
    color: #555;
}

label.required:after {
    content: " *" !important;
    color: var(--error) !important;
}

select,
input {
    width: 100% !important;
    padding: 10px 10px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    transition: all 0.3s !important;
    background-color: #f9f9f9 !important;
}

select:disabled {
    opacity: 0.6 !important;
    background-color: #f0f0f0 !important;
}

select:focus,
input:focus {
    border-color: var(--primary) !important;
    outline: none !important;
    background-color: white !important;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2) !important;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1 !important;
}

.ticket-selector {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 5px 0 !important;
    border-bottom: 1px dashed #eee !important;
}

.ticket-selector:last-child {
    border-bottom: none !important;
}

.ticket-info {
    flex: 1 !important;
}

.ticket-name {
    font-weight: 600 !important;
    margin-bottom: 3px !important;
}

.ticket-price {
    font-size: 12px !important;
    color: #666 !important;
}

.ticket-cert {
    font-size: 12px !important;
    color: var(--primary) !important;
    margin-top: 3px !important;
}

.ticket-quantity {
    display: flex !important;
    align-items: center !important;
}

.quantity-btn {
    border-radius: 50% !important;
    background: #f0f0f0 !important;
    border: none !important;
    font-size: 16px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s !important;
    padding: 15px !important;
    height: 40px;

}

.quantity-btn:hover {
    background: #e0e0e0 !important;
}

.quantity-input {
    width: 40px !important;
    text-align: center !important;
    margin: 0 10px !important;
    padding: 5px !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
}

.total-price {
    text-align: right !important;
    padding: 10px 0 !important;
    /*padding-bottom: 0px !important;*/
    font-size: 18px !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
}

.btn-book {
    width: 100% !important;
    padding: 10px !important;
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    margin-top: 10px !important;
}

.btn-book:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3) !important;
}

.btn-book:disabled {
    background: #cccccc !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Custom dropdown arrow */
select {
    appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 15px !important;
}

.booking-complete {
    text-align: center !important;
    padding: 30px !important;
}

.booking-complete h2 {
    color: var(--primary) !important;
    margin-bottom: 15px !important;
}

.booking-complete p {
    margin-bottom: 20px !important;
    color: #555 !important;
}

.booking-complete-icon {
    font-size: 60px !important;
    color: var(--success) !important;
    margin-bottom: 20px !important;
}

.booking-form {
    display: block !important;
}

.hidden {
    display: none !important;
}

.payment-methods {
    margin-top: 15px !important;
}

.payment-option {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 10px !important;
    padding: 10px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.payment-option:hover {
    border-color: var(--primary) !important;
}

.payment-option.selected {
    border-color: var(--primary) !important;
    background-color: rgba(67, 97, 238, 0.05) !important;
}

.payment-option input {
    width: auto !important;
    margin-right: 10px !important;
}

.payment-icon {
    width: 30px !important;
    margin-right: 10px !important;
    color: var(--primary) !important;
}

.payment-details {
    margin-top: 15px !important;
    padding: 15px !important;
    background-color: #f9f9f9 !important;
    border-radius: 8px !important;
    display: none;
}

.payment-details.active {
    display: block !important;
}

.quanti-booking {
    padding: 10px 20px 0px !important;
}

.date-selection {
    padding-bottom: 0 !important;
}

.contact-imfo {
    padding-bottom: 0;
}

.container {
    max-width: 650px;
    margin: auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    overflow: hidden;
    width: 100%;
}

.header {
    padding: 25px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.header h1 {
    font-size: 26px;
    margin-bottom: 6px;
}

.sub {
    font-size: 15px;
    opacity: .9;
}

.section {
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.section-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.section-title svg {
    margin-right: 10px;
}

.guest-row {
    position: relative;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: border .2s;
}

.guest-row:hover {
    border-color: var(--primary);
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

label.required:after {
    content: " *";
    color: var(--error);
}

input {
    width: 100%;
    padding: 11px 14px;
    font-size: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
    transition: border .2s, background .2s;
}

input:focus {
    border-color: var(--primary);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, .2);
}

.btn {
    display: inline-block;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: .25s;
}

.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, .3);
}

.hidden {
    display: none;
}

.complete {
    text-align: center;
    padding: 40px;
}

.complete .icon {
    font-size: 60px;
    color: var(--success);
    margin-bottom: 20px;
}

div#codOption {
    display: none !important;
}

.availability-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.availability-loader::after {
    content: "";
    width: 24px;
    height: 24px;
    border: 4px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hidden {
    display: none !important;
}

.booking-container.boooking {
    margin: 0 auto !important;
}


.date-selections .calendar-header {
    background: #f8f9fa;
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.2s;
}

.date-selections .calendar-header:hover {
    background: #e9ecef;
}

.date-selections .calendar-icon {
    width: 20px;
    height: 20px;
    color: #6c757d;
}

.date-selections .date-display {
    flex: 1;
}

.date-selections .date-label {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 2px;
}

.date-selections .date-value {
    font-size: 14px;
    font-weight: 700;
    color: #555;
}

.filter-form .date-selections .calendar-header svg path{
    fill: #555;
}

.date-selections .calendar-dropdown {
    /*display: none;*/
    background: white;
    border-top: 1px solid #e9ecef;
}

.date-selections .calendar-dropdown.active {
    display: block;
}

.date-selections .calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
}

.date-selections .nav-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    color: #6c757d;
    transition: all 0.2s;
}

.date-selections .nav-button:hover {
    background: #f8f9fa;
    color: #495057;
}

.date-selections .month-year {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
}

/*.date-selections .calendar-grid {*/
/*    padding: 0 20px;*/
/*}*/

.date-selections .weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.date-selections .weekday {
    text-align: center;
    padding: 8px 4px;
    font-size: 12px;
    font-weight: 500;
    color: #6c757d;
}

.date-selections .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 20px;
}

.date-selections .day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s;
    position: relative;
}

.date-selections .day:hover:not(.disabled):not(.other-month) {
    background: #e3f2fd;
}

.date-selections .day.selected {
    background: #2196f3;
    color: white;
}

.date-selections .day.today {
    background: #fff3e0;
    color: #e65100;
    font-weight: 600;
}

.date-selections .day.disabled {
    color: #dee2e6;
    cursor: not-allowed;
}

.date-selections .day.other-month {
    color: #dee2e6;
    cursor: default;
}

.date-selections .time-selection {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    background: #fafafa;
}

.date-selections .time-label {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    margin-bottom: 12px;
}

.date-selections .time-slots {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.date-selections .time-slot {
    padding: 8px 16px;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    transition: all 0.2s;
}

.date-selections .time-slot:hover {
    border-color: #2196f3;
    color: #2196f3;
}

.date-selections .time-slot.selected {
    background: #2196f3;
    border-color: #2196f3;
    color: white;
}

.date-selections .time-slot.disabled {
    background: #f8f9fa;
    color: #dee2e6;
    cursor: not-allowed;
    border-color: #f1f3f4;
}

.date-selections .booking-actions {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 12px;
}

.date-selections .btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.date-selections .btn-primary {
    background: #2196f3;
    color: white;
}

.date-selections .btn-primary:hover {
    background: #1976d2;
}

.date-selections .btn-primary:disabled {
    background: #dee2e6;
    cursor: not-allowed;
}

.date-selections .btn-secondary {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #e9ecef;
}

.date-selections .btn-secondary:hover {
    background: #e9ecef;
}

.date-selections .booking-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 8px;
    padding: 8px 12px;
    background: #f8d7da;
    border-radius: 4px;
    display: none;
}


.form-group input.error {
    border-color: #d32f2f !important;
    background-color: #ffebee !important;
}

.form-group input.error:focus {
    box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.2) !important;
}

.day.disabled {
    color: #ccc !important;
    cursor: not-allowed !important;
    background-color: #f5f5f5 !important;
}

.day.disabled:hover {
    background-color: #f5f5f5 !important;
}

.booking-cutoff-notice {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 10px;
}

/* Highlight quantity inputs when they exceed available seats */
.quantity-input.error {
    border-color: #d32f2f !important;
    background-color: #ffebee !important;
}

.quantity-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    pointer-events: none;
}

/* CALENDAR DROPDOWN OVERLAY FIX */
.date-selections {
    position: relative !important;
}

.calendar-dropdown {
    position: absolute;
    /*top: 100%;*/
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px;
    margin-top: 4px;
}


.calendar-dropdown.hidden {
    display: none !important;
}

.calendar-dropdown:not(.hidden) {
    display: block !important;
}

/* Ensure calendar header has proper cursor */
.calendar-header {
    cursor: pointer !important;
    user-select: none !important;
}

/* Calendar grid styling */
.calendar-grid {
    margin: 16px 0 !important;
}

.calendar-nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 16px !important;
}

.nav-button {
    background: #f5f5f5 !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    padding: 8px 12px !important;
    cursor: pointer !important;
    font-size: 14px !important;
}

.nav-button:hover {
    background: #e5e5e5 !important;
}

.month-year {
    font-weight: 600 !important;
    font-size: 16px !important;
}

.weekdays {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 2px !important;
    margin-bottom: 8px !important;
}

.weekday {
    text-align: center !important;
    padding: 8px 4px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #666 !important;
}

.days {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 2px !important;
}

.day {
    text-align: center !important;
    padding: 8px 4px !important;
    min-height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    transition: all 0.2s ease !important;
}

.day.clickable:hover {
    background: #e3f2fd !important;
}

.day.selected {
    background: #2196f3 !important;
    color: white !important;
}



.time-selection {
    margin: 16px 0 !important;
}

.time-label {
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

.time-slots {
    display: flex !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
}

.time-slot {
    padding: 8px 16px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-size: 14px !important;
}

.time-slot:hover {
    background: #e3f2fd !important;
}

.time-slot.selected {
    background: #2196f3 !important;
    color: white !important;
    border-color: #2196f3 !important;
}

.booking-actions {
    display: flex !important;
    gap: 8px !important;
    justify-content: flex-end !important;
}

.btn {
    padding: 8px 16px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    transition: all 0.2s ease !important;
}

.btn-secondary {
    background: #f5f5f5 !important;
    border: 1px solid #ddd !important;
    color: #333 !important;
}

.btn-secondary:hover {
    background: #e5e5e5 !important;
}

.btn-primary {
    background: #2196f3 !important;
    border: 1px solid #2196f3 !important;
    color: white !important;
}

.btn-primary:hover:not(:disabled) {
    background: #1976d2 !important;
}

.btn-primary:disabled {
    background: #ccc !important;
    border-color: #ccc !important;
    cursor: not-allowed !important;
}

/* Ensure the calendar doesn't interfere with form layout */
.booking-section.date-selections {
    overflow: visible !important;
}

/* Mobile responsiveness for calendar */
@media (max-width: 768px) {
    .calendar-dropdown {
        left: -10px !important;
        right: -10px !important;
        margin-left: 10px !important;
        margin-right: 10px !important;
        top: 30% !important;
    }

    .time-slots {
        flex-direction: column !important;
    }

    .booking-actions {
        flex-direction: column !important;
    }
}


.time-slot.disabled {
    opacity: 0.5;
    pointer-events: none;
    /* extra guard so they can’t be focused or clicked */
    cursor: default;
}

.booking-container.filter-form #step1 {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}


/* Ticket selectors aligned in one row */
.booking-container.filter-form #step1 .quanti-booking {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Style the “Check Availability” button */
#check-availability-btn {
    margin: 0 !important;
    padding: 0.75em 1.5em;
    cursor: pointer;
    /*max-width: fit-content;*/
}

.booking-error {
    font-size: 0.9em;
}

.booking-container.filter-form {
    max-width: 100% !important;
}

.booking-container.filter-form div#step2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0px 20px 20px;
}

.dropdown-container {
    /*position: relative;*/
    display: inline-block;
    width: 100%;
}

.dropdown-toggle {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-toggle:after {
    content: "▼";
    font-size: 10px;
    margin-left: 10px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    /*width: 100%;*/
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.item-label {
    font-weight: 500;
}

.item-controls {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background-color: #f8f8f8;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background-color: #eee;
}

.quantity-input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0 5px;
}

/*.filter-form .form-group {*/
/*    margin: 0px !important;*/
/*}*/

.filter-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #555;
}

.filter-form label.required::after {
    content: '*';
    color: #c00;
    margin-left: 4px;
}

.filter-form select,
.filter-form input[type="text"],
.filter-form input[type="tel"],
.filter-form input[type="email"],
.filter-form input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.filter-form select:disabled,
.filter-form option:disabled {
    color: #999;
    background: #e9e9e9;
}

.filter-form .dropdown-toggle {
    width: 100%;
    padding: 10px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
}

.filter-form .dropdown-menu {
    display: none;
    /*position: absolute;*/
    /*top: 100%;*/
    /*left: 0;*/
    /*right: 0;*/
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 10;
}

.filter-form .dropdown-menu.show {
    display: block;
}

.filter-form .dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.filter-form .item-controls {
    /*display: flex;*/
    /*align-items: center;*/
    border: 1px solid #d3d3d3;
    padding: 5px 8px;
    border-radius: 4px;
    
}

.filter-form .quantity-btn {
    width: initial;
    height: initial;
    background: transparent !important;
    display: initial !important;
    padding: 0px !important;
    color: #026DA7;
    border: none !important;
    border-radius: initial !important;
    /*cursor: pointer;*/
    /*font-size: 16px;*/
}

.filter-form .quantity-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.filter-form .quantity-input {
    width: 100% !important;
    padding: 0px !important;
    background: transparent !important;
    border: none !important;
    height: initial !important;
}

.filter-form .btn-book {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.filter-form .btn-book:hover {
    background: #0056b3;
}

.filter-form .booking-error {
    display: none;
}

.filter-form .booking-error.show {
    display: block;
}

.filter-form .availability-wrapper {
    margin-bottom: 10px;
}

.filter-form .available-info {
    font-size: 14px;
}

.filter-form .order-summary {
    background: #fff;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-top: 20px;
}

.filter-form .order-summary h3 {
    margin-top: 0;
    font-size: 18px;
}

.filter-form .order-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-form .order-summary li {
    margin-bottom: 8px;
    font-size: 14px;
}

.filter-form .payment-methods {
    margin-top: 10px;
}

.filter-form .payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.filter-form .booking-complete {
    text-align: center;
    padding: 20px;
    /*display: none;*/
}

.filter-form .booking-complete-icon {
    font-size: 40px;
    color: #28a745;
}

.filter-form .booking-section {
    border: none !important;
    padding: 0;
}

@media (max-width: 600px) {
    /*.filter-form .form-row {*/
    /*    gap: 0px !important;*/
    /*}*/
    
    .booking-container.filter-form #step1 {
       flex-direction: row;
        gap: 1rem; /* Optional: align items better for stacking */
    }
    .filter-form .btn-book {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
 .filter-form .contact-imfo .form-row {
    width: 100% !important;
    flex-wrap: wrap;
}
.filter-form .form-group {
   
    min-width: 47%;
}
.booking-container.filter-form div#step2{
    gap: 20px !important;
}
.booking-container.filter-form div#step2{
    padding: 0 20px 30px;
}
span#adult-price {
    font-size: 10px !important;
}
span#child-price {
    font-size: 10px !important;
}
}



/*.filter-form {*/
/*    padding: 25px 25px 20px;*/
/*}*/

/*.booking-container.filter-form {*/
/*    max-width: 1024px !important;*/
/*    margin: auto !important;*/
/*}*/

span.guests-summary {
    color: #000;
}

.dropdown-toggle::after {
    color: #000;
}

.dropdown-item {
    background: transparent;
    color: #000;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #000 !important;
    text-decoration: none;
    background-color: transparent !important;
}

#check-availability-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #ccc;
    /* Add other styles as needed */
}
/*.filter-form .booking-section{*/
/*    width: 100%;*/
/*}*/
.filter-form .booking-section.guests-selection {
    flex: 0 0 38%;
}
.booking-section.check-availability {
    flex: 0 0 18%;
}
.filter-form .date-selections {
    position: static !important;
    flex: 0 0 38%;
}
.filter-form .date-selections .calendar-header{
    border:none;
}
.guests-selection .form-group {
    display: flex;
    align-items: center;
    margin: 0px !important;
    justify-content: space-between;
    gap: 10px;
}

.booking-section.date-selections.filter-form .form-row {
    min-width: 350px;
}

.filter-form .form-group label {
        font-weight: 400;
        /*margin-bottom: 0;*/
}

@media(min-width:1023px){
    .filter-form .calendar-dropdown {
    position: absolute;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: min-content;
}
}
@media(max-width:1023px){
    .booking-container.filter-form #step1{
        flex-wrap: wrap;
    }
    .booking-container.filter-form div#step2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}
}

@media only screen and (max-width: 375px) {
   .form-row {
    width: 100% !important;
    flex-wrap: wrap !important;
    margin: auto !important;
    flex-direction: column;
}

.booking-section.date-selections.filter-form .form-row {
    min-width: 200px;
    width: 100% !important;
}
.filter-form .form-row {
        gap: 16px !important;
    }
    .contact-imfo .form-row {
    gap: 0 !important;
}
.calendar-dropdown{
    margin: 0 !important;
    padding: 10px !important;
}
    
}

@media (max-width:991px){
    .filter-form .booking-section.guests-selection {
    flex: 0 0 100%;
}
.filter-form .date-selections {
    position: static !important;
    flex: 0 0 100%;
}
.booking-section.check-availability {
    flex: 0 0 100%;
}
.booking-section.date-selections.filter-form .form-row {
    min-width: 100%;
}
div#calendarDropdown {
    position: static;
}
.guests-selection .form-group {
    display: flex;
    align-items: center;
    margin: 0px !important;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid;
    padding: 10px;
    border-radius: 8px;
}
.filter-form .item-controls {
    border: none;
    padding: 0;
    border-radius: 0;
}
.filter-form .form-group label {

        margin-bottom: 0;
}
.filter-form .form-group label {
font-size: 14px;
}
div#step2 label {
    margin-bottom: 8px;
}
}
@media (max-width:1023px) and (min-width:992px){
    .booking-container.filter-form #step1 {
        flex-wrap: nowrap;
    }
    .filter-form .date-selections {
    position: static !important;
    flex: 0 0 auto;
}
.booking-container.filter-form #step1{
    gap: 0px;
}
.booking-section.date-selections.filter-form .form-row {
    min-width: 100%;
}
.guests-selection .form-group {
    display: block;
}
.filter-form .booking-section.guests-selection {
    flex: 0 0 45%;
}
}
.booking-section.date-selections.filter-form .form-group {
    margin: 0 !important;
}
.booking-section.filter-form p {
    margin: 0;
}