
#booking-app-container input[type="checkbox"] {
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    appearance: checkbox !important;
    opacity: 1 !important;
    display: inline-block !important;
    visibility: visible !important;
    position: relative !important;
    clip: auto !important;
    clip-path: none !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 10px 0 0 !important;
    pointer-events: auto !important;
}

.tourm-booking-container {
    margin: 20px auto;
    width: 100%;
    max-width: 1100px;
}

.bf-layout-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.bf-main-content {
    flex: 1;
    min-width: 0;
}

.bf-sidebar {
    width: 350px;
    flex-shrink: 0;
    position: sticky;
    top: 30px;
    transition: top 0.3s ease-in-out;
    background: rgba(0, 0, 0, 0.03);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.bf-section-title {
    border-bottom: 1px solid currentColor;
    padding-bottom: 10px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.bf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.bf-grid-full {
    grid-column: 1 / -1;
}

.bf-input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.bf-participant-box {
    background: rgba(0, 0, 0, 0.03);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.bf-btn-remove {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc3232;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: 0.3s;
    z-index: 2;
}

.bf-btn-remove:hover {
    background: #b32d2d;
}

.bf-btn-add {
    width: 100%;
    padding: 12px;
    font-weight: bold;
    margin-bottom: 30px;
    background: transparent;
    border: 2px dashed currentColor;
    opacity: 0.6;
    cursor: pointer;
    transition: 0.3s;
    color: inherit;
}

.bf-btn-add:hover {
    opacity: 1;
}

.bf-btn-add.bf-btn-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.bf-btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    display: block;
    margin-top: 20px;
}

.bf-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin-bottom: 10px;
}

.bf-checkbox-wrapper span {
    font-size: 14px;
    opacity: 0.9;
}

.bf-label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.9;
}

.bf-includes-excludes {
    margin-bottom: 15px;
    font-size: 13px;
    opacity: 0.9;
}

.bf-includes-list ul,
.bf-excludes-list ul {
    list-style: none;
    padding-left: 0;
    margin-top: 5px;
    margin-bottom: 10px;
}

.bf-includes-list li,
.bf-excludes-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
    line-height: 1.4;
}

.bf-includes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 14px;
}

.bf-excludes-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 0;
    color: #dc3232;
    font-weight: bold;
    font-size: 14px;
}

.bf-includes-excludes p {
    margin-top: 5px;
    margin-bottom: 10px;
}

@media (max-width: 850px) {
    .bf-grid {
        grid-template-columns: 1fr;
    }

    .bf-coupon-container {
        flex-direction: column;
    }

    .bf-layout-wrapper {
        flex-direction: column;
    }

    .bf-sidebar {
        width: 100%;
        position: static;
    }
}