/* Overall container */
.cc-questionnaire-wrapper {
    background: #ffffff;
    padding: 20px;
    font-size: 18px;
    line-height: 1.6;
}

/* Make text larger on mobile */
@media (max-width: 600px) {
    .cc-questionnaire-wrapper {
        font-size: 20px;
        padding: 25px;
    }
}

/* Question text */
.cc-question {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Category headings */
.cc-category-title {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Input fields */
.cc-question input[type="text"],
.cc-question textarea,
.cc-question select {
    width: 100%;
    padding: 14px;
    font-size: 20px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background: #fff;
}

/* Radio buttons and checkboxes */
.cc-question input[type="radio"],
.cc-question input[type="checkbox"] {
    width: 28px;
    height: 28px;
    margin-right: 12px;
}

/* Radio/checkbox labels */
.cc-question label {
    font-size: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* Submit button */
.cc-submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 22px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 10px;
    margin-top: 25px;
    cursor: pointer;
}

.cc-submit-btn:hover {
    background: #005f8d;
}

/* Wrapper for the whole questionnaire */
.cc-questionnaire-wrapper {
    background: #f7f7f7;
    padding: 20px;
}

/* Each question becomes a card */
.cc-question-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Question text */
.cc-question-card .cc-question-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Inputs inside cards */
.cc-question-card input[type="text"],
.cc-question-card textarea,
.cc-question-card select {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background: #fff;
}

/* Radio / checkbox */
.cc-question-card input[type="radio"],
.cc-question-card input[type="checkbox"] {
    width: 26px;
    height: 26px;
    margin-right: 12px;
}

.cc-question-card label {
    font-size: 18px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* Mobile improvements */
@media (max-width: 600px) {
    .cc-question-card {
        padding: 24px;
    }
    .cc-question-card .cc-question-text {
        font-size: 22px;
    }
    .cc-question-card label {
        font-size: 20px;
    }
}

.cc-radio-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
}

.cc-radio-row label {
    flex: 1;
    font-size: 20px;
    display: flex;
    align-items: center;
    padding: 12px;
    background: #ffffff;
    border: 2px solid #ccc;
    border-radius: 10px;
    justify-content: center;
    cursor: pointer;
}

/* Make radio buttons larger */
.cc-radio-row input[type="radio"] {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* Mobile: stack neatly but still look like buttons */
@media (max-width: 600px) {
    .cc-radio-row {
        gap: 12px;
    }
    .cc-radio-row label {
        font-size: 22px;
        padding: 16px;
    }
}

.cc-success-screen {
    background: #ffffff;
    padding: 40px;
    text-align: center;
    font-size: 22px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

<style>
.cc-expand-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 0 6px;
}

.cc-expand-btn.expanded {
    transform: rotate(90deg);
}
</style>

