form#writing-band-estimator-form {
    color: #fff;
}

.band-estimate-result-section {
    padding: 96px 0;
}

.band-estimate-result-section .section-title__top {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 10px;
}

.band-estimate-result-section .job-insights__content-summary {
    font-size: 16px;
    color: var(--muted-white);
    line-height: 26px;
}

#band-estimate-output {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.word-counter {
    text-align: right;
    margin-top: 5px;
    font-size: 14px;
    color: #666;
    transition: color 0.3s ease;
}

form#writing-band-estimator-form .disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 16px;
    color: rgba(255, 193, 7, 0.9);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.band-estimate-result-section .job-insight-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(0.07deg, rgba(0, 85, 255, 0.15) 0%, rgba(97, 97, 97, 0.09) 100%);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.band-estimate-result-section .job-insight-title h4 {
    color: var(--text-white);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin: 0;
}

.band-estimate-result-section .job-insight-description {
    color: var(--muted-white);
    font-size: 16px;
    line-height: 26px;
}

.band-estimate-result-section .job-average-salary span {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.band-estimate-result-section .job-insight-description p {
    margin-bottom: 0.5rem;
}

.band-estimate-result-section .download-buttons {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.band-estimate-result-section .download-buttons .btn {
    padding: 10px 20px;
}

/* Task Question Display Style */
.task-question-text {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px;
    color: var(--text-white, #fff);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Radio Button Styles */
form#writing-band-estimator-form input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: transparent;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

form#writing-band-estimator-form input[type="radio"]:checked {
    border-color: rgba(0, 85, 255, 0.8);
    background: rgba(0, 85, 255, 0.2);
}

form#writing-band-estimator-form input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: rgba(0, 85, 255, 1);
    border-radius: 50%;
}

form#writing-band-estimator-form label {
    color: var(--text-white, #fff);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

form#writing-band-estimator-form label:hover {
    color: rgba(0, 85, 255, 0.8);
}

form#writing-band-estimator-form select,
form#writing-band-estimator-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--text-white, #fff);
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.4;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

form#writing-band-estimator-form select:focus,
form#writing-band-estimator-form textarea:focus {
    outline: none;
    border-color: rgba(0, 85, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.1);
}

form#writing-band-estimator-form select::placeholder,
form#writing-band-estimator-form textarea::placeholder {
    color: var(--muted-white, rgba(255, 255, 255, 0.5));
}

form#writing-band-estimator-form select option {
    background: #2a2a2a;
    color: #fff;
    padding: 10px;
}

#task2-question-options {
    flex-direction: row;
}

@media (max-width: 768px) {
    .band-estimate-result-section #band-estimate-output {
        gap: 16px;
    }

    .band-estimate-result-section .job-average-salary span {
        font-size: 36px;
    }

    .band-estimate-result-section .job-insight-title h4 {
        font-size: 20px;
    }
}