/* Form 36 Special Pricing Styles - Light Theme */

.form36-fee-sections {
    margin: 20px 0;
    padding: 20px;
    background: #fafbfc;
    border: 1px solid #e8ecf0;
    border-radius: 8px;
}

.form36-fee-sections-inner {
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
}

.form36-fee-sections-title {
    font-size: 18px;
    font-weight: 600;
    color: white !important;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8ecf0;
}

.form36-fee-sections-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.form36-fee-section-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.form36-fee-section-row:hover {
    background: #f8f9fa;
    border-color: #d0d7de;
}

.form36-fee-section-row.form36-fee-section-active,
.form36-fee-section-row:has(input:checked) {
    background: #f0f6fc;
    border-color: #0969da;
}

.form36-fee-section-label {
    flex: 1;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.form36-fee-section-label input[type="radio"] {
    margin-right: 12px;
    cursor: pointer;
    accent-color: #0969da;
}

.form36-fee-section-title {
    font-size: 15px;
    font-weight: 500;
    color: #24292f;
}

.form36-fee-section-details {
    display: flex;
    gap: 12px;
    align-items: center;
}

.form36-fee-band {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form36-fee-band-early_bird {
    background: #dafbe1;
    color: #1a7f37;
}

.form36-fee-band-standard {
    background: #fff8c5;
    color: #9a6700;
}

.form36-fee-band-late {
    background: #ffebe9;
    color: #cf222e;
}

.form36-fee-band-closed {
    background: #ffebe9;
    color: #cf222e;
}

.form36-fee-price {
    font-size: 16px;
    font-weight: 600;
    color: #0969da;
}

.form36-no-sections {
    padding: 20px;
    text-align: center;
    color: #cf222e;
    font-size: 14px;
    background: #ffebe9;
    border-radius: 6px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .form36-fee-sections {
        padding: 15px;
    }

    .form36-fee-sections-title {
        font-size: 16px;
    }

    .form36-fee-section-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 15px;
    }

    .form36-fee-section-label {
        width: 100%;
    }

    .form36-fee-section-label input[type="radio"] {
        margin-right: 10px;
    }

    .form36-fee-section-details {
        width: 100%;
        justify-content: flex-start;
        padding-left: 28px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .form36-fee-sections {
        background: #161b22;
        border-color: #30363d;
    }

    .form36-fee-sections-title {
        color: #f0f6fc;
        border-bottom-color: #30363d;
    }

    .form36-fee-section-row {
        background: #0d1117;
        border-color: #30363d;
    }

    .form36-fee-section-row:hover {
        background: #161b22;
        border-color: #484f58;
    }

    .form36-fee-section-row.form36-fee-section-active,
    .form36-fee-section-row:has(input:checked) {
        background: #1f3a5f;
        border-color: #58a6ff;
    }

    .form36-fee-section-title {
        color: #f0f6fc;
    }

    .form36-fee-band-early_bird {
        background: #238636;
        color: #ffffff;
    }

    .form36-fee-band-standard {
        background: #9e6a03;
        color: #ffffff;
    }

    .form36-fee-band-late,
    .form36-fee-band-closed {
        background: #da3633;
        color: #ffffff;
    }

    .form36-fee-price {
        color: #58a6ff;
    }

    .form36-no-sections {
        background: #da3633;
        color: #ffffff;
    }
}
