/* --- Money Savvy Watu Pro Custom Theme --- */

/* 1. Container Styling (Body Font & Text Color) */
#watupro_quiz.quiz-area {
    font-family: \'Inter\', sans-serif; /* Body Font */
    color: #727376; /* Custom Grey */
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* 2. Question Text (Heading Font) */
.watu-question .question-content {
    font-family: \'Montserrat\', sans-serif; /* Heading Font */
    font-size: 20px;
    font-weight: 700;
    color: #727376;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* 3. Choice Styling (The Radio Buttons - FIXED ALIGNMENT) */
.watupro-question-choice {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px !important;
    margin-bottom: 10px !important;
    transition: all 0.3s ease;
    display: flex !important; 
    align-items: center; /* Vertically centers circle and text */
    gap: 15px; /* Neatly spaces circle and text */
}

/* Highlight Hover State */
.watupro-question-choice:hover {
    border-color: #ef4650; /* Hero Red */
    background: #fffcfc;
}

/* Styling the labels */
.watupro-question-choice label {
    font-family: \'Inter\', sans-serif; /* Body Font */
    font-size: 16px;
    color: #727376; 
    cursor: pointer;
    margin: 0 !important; 
    flex: 1; /* Allows text to take up remaining space */
    line-height: 1.4;
}

/* Fix the actual radio button circle */
.watupro-question-choice input[type=\"radio\"] {
    margin: 0 !important;
    cursor: pointer;
    width: 18px; 
    height: 18px;
    accent-color: #ef4650; /* Turns selected dot Hero Red */
    flex-shrink: 0; 
}

/* 4. Progress Bar Styling */
.watupro-progress-container {
    background-color: #e0e0e0;
    border-radius: 20px;
    height: 12px !important;
    overflow: hidden;
    margin-bottom: 30px;
}

.watupro-progress-bar {
    background-color: #ef4650 !important; /* Hero Red */
    height: 100%;
}

/* 5. Buttons Styling (Next/Previous/Submit) */
.watupro_buttons input[type=\"button\"], 
.watupro-submit-button {
    font-family: \'Montserrat\', sans-serif; /* Buttons use Heading Font */
    background-color: #ef4650 !important;
    color: #ffffff !important;
    border: none;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.watupro_buttons input[type=\"button\"]:hover,
.watupro-submit-button:hover {
    background-color: #d63638 !important; /* Darker red on hover */
    transform: translateY(-2px);
}

/* 6. Contact Details Area (The end-of-quiz form) */
.watupro-ask-for-contact {
    background: #f2f2f2;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #ef4650; /* Hero Red */
    color: #727376;
}

.watupro-contact-field {
    font-family: \'Inter\', sans-serif; /* Body Font */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    margin-top: 5px;
    color: #727376;
}

.watupro-contact-field:focus {
    border-color: #ef4650; /* Hero Red */
    outline: none;
}