/* --- SUBMIT BUTTON (final version) --- */
.cc-submit-btn {
    width: 100% !important;
    padding: 18px !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    background: linear-gradient(135deg, #0073aa, #0096d1) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    margin-top: 30px !important;
    cursor: pointer !important;
    text-align: center !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.cc-submit-btn:hover {
    background: linear-gradient(135deg, #005f8d, #007fb3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.20) !important;
}

/* --- MOBILE-FIRST FORM REDESIGN --- */

/* Form wrapper */
.cc-questionnaire-wrapper {
    background: #f9f9f9;
    padding: 20px;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

/* Category headings */
.cc-category-title {
    font-size: 22px;
    margin: 25px 0 10px;
    font-weight: 700;
    width: 100%;
    display: block;
}

/* Inputs */
.cc-question input[type="text"],
.cc-question textarea,
.cc-question select {
     width: 100%;
     padding: 16px;
    font-size: 20px;
    border: 3px solid #ccc;
    border-radius: 10px;
    background: #fff;
    margin-top: 10px;
}

/* FIX: Dropdown selected text not showing */
select.cc-input,
.cc-question select.cc-input {
    color: #000 !important;
    background-color: #fff !important;
    padding: 1px;

}



/* Custom dropdown arrow */
.cc-question select {
    background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

/* 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;
}
