div.quiz-area {
	      font-size: 16px
	   }
div.watu-question, div.show-question {
margin-top: 20px !important;
font-size: 16px!important;
}
.question-choices, .show-question-choices {
margin-top: 5px !important;
font-size: 16px !important;
}
.watupro_buttons input, input.watupro-start-quiz, button.watupro-start-quiz {
font-size:100% !important;
}

/* ========================================================
   FLEXBOX LAYOUT FOR WATUPRO EXAM DESCRIPTION CONTAINER
   ======================================================== */

/* Parent container for exam description */
.watupro-exam-description {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Even spacing */
    gap: 20px; /* Spacing between flex items */
}

/* First two children: 50% width each on larger screens */
.watupro-exam-description > :nth-child(1),
.watupro-exam-description > :nth-child(2) {
    flex: 1;
    min-width: calc(50% - 10px); /* Accounts for gap */
}

/* If only one of the first two children exists, center it at 50% width */
.watupro-exam-description > :nth-child(1):only-child {
    min-width: 50%;
    margin: 0 auto; /* Center align */
}

/* Ensure third child always appears on a new line */
.watupro-exam-description > :nth-child(3) {
    width: 100%;
    flex-basis: 100%;
}

/* Mobile: Each takes full width */
@media (max-width: 768px) {
    .watupro-exam-description > :nth-child(1),
    .watupro-exam-description > :nth-child(2),
    .watupro-exam-description > :nth-child(1):only-child {
        min-width: 100%;
    }
}

/* Special Case: When .watupro-exam-description-box has NO parent container */
.watupro-exam-description-box:not(.watupro-exam-description .watupro-exam-description-box) {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
}

/* Mobile: Full width */
@media (max-width: 768px) {
    .watupro-exam-description-box:not(.watupro-exam-description .watupro-exam-description-box) {
        width: 100%;
    }
}

/* ========================================================
   GENERAL STYLING FOR EXAM BOXES AND NOTICES
   ======================================================== */

.watupro-exam-description-box,
.watupro-ask-for-contact {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    margin: 0 auto 40px auto;
}

/* Notice boxes with alert styling */
.watupro-ask-for-contact > p:first-child,
.watupro-exam-notice {
    background: #ffeeba; 
    color: #856404; 
    padding: 10px; 
    border-radius: 5px; 
    border: 1px solid #ffc107; 
    font-weight: bold; 
    text-align: center;
    width: 100%;
}

/* Exam Title and Time Display */
.watupro-exam-title {
    text-align: center;
    margin-top: 20px;
    color: #0275d8;
}

.watupro-exam-time {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.watupro-exam-description-box p {
    text-align: left;
    width: 100%;
    font-weight: bold;
    margin-bottom: 5px;
}

ul.watupro-exam-links {
    width: 100%;
}

/* ========================================================
   TIMER BAR
   ======================================================== */



#customTimerDiv {
z-index: 1000000;
position: fixed;
background-color: rgb(93, 72, 203);
width: 100%;
left: 0;
top: 0;
border-style: 0;
padding-left: 10px;
color: white !important;
font-weight: normal;
text-align: right;
font-weight: 200 !IMPORTANT;

/* ========================================================
   TIME MANAGEMENT STYLES
   ======================================================== */

.watupro-exam-time-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    width: 100%;
}

.watupro-exam-time-list span {
    color: #d9534f; /* Highlighted text */
}

.watupro-exam-time-list li {
    background: #f8f9fa;
    padding: 12px;
    margin: 8px 0;
    border-radius: 5px;
    text-align: center;
}

/* ========================================================
   CONTACT FORM AND INPUT STYLES
   ======================================================== */

/* Aligns form fields properly */
.watupro-exam-description .watupro-ask-for-contact p.watupro-contact-field-email-wrap,
.watupro-exam-description .watupro-ask-for-contact p.watupro-contact-field-name-wrap {
    text-align: left;
}

/* Full-width input fields */
.watupro-ask-for-contact input[type=text] {
    width: 100% !important;
}

/* Error message styling */
span.watupro-contact-error {
    display: block;
    font-weight: bold;
}

/* ========================================================
   QUESTION & ANSWER STYLING
   ======================================================== */

.question-content, .answer span {
    font-size: 16px;
    line-height: 31px;
    font-weight: normal;
}

.watupro-question-choice input[type=radio],
.watupro-question-choice input[type=checkbox] {
    margin-right: 1.25em !important;
    vertical-align: -0.15em;
}

/* Time Nag text hidden */
#timeNagText {
    display: none;
}

/* CAPTCHA section */
.watupro-text-captcha {
    clear: both;
    text-align: center;
    margin: 40px 20px;
    font-size: 16px;
    font-weight: bold;
}

/* Warnings */
.watupro-warning {
    text-align: center;
}

/* ========================================================
   PAGE LAYOUT: HIDES HEADER/FOOTER & ADJUSTS CONTENT
   ======================================================== */

.site-header, .site-footer {
    display: none;
}

.site-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}


/* ========================================================
   QUIZ BODY SPACING
   ======================================================== */
div.quiz-area {
font-size: 16px;
margin-top: 40px;
}
/* ========================================================
   QUIZ RESULTS STYLES
   ======================================================== */

.quiz-summary {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.fail {
    color: red;
    font-weight: bold;
}

.pass {
    color: green;
    font-weight: bold;
}

.warning {
    background: #ffcccc;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

/* Answer feedback styling */
.correct-answer {
    color: green;
    font-weight: bold;
}

.incorrect-answer {
    color: red;
    font-weight: bold;
}

.unanswered {
    background: red;
    font-weight: bold;
    padding: 5px;
    display: inline-block;
    color: white;
    font-weight: normal;
    text-align: center;
    border-radius: 10px;
}

/* ========================================================
   EXAM DASHBOARD STYLES
   ======================================================== */

.watupro-exam-dashboard {
    max-width: 100%;
    margin: 10px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Exam Title */
.watupro-exam-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Exam Stats */
.watupro-exam-stats {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    background: #f8f9fa;
    border-radius: 10px;
}

.watupro-exam-stat {
    flex: 1;
    text-align: center;
    padding: 15px;
}

.watupro-exam-stat h3 {
    font-size: 16px;
    font-weight: bold;
    color: #555;
    margin-bottom: 8px;
}

.watupro-exam-stat p {
    font-size: 18px;
    font-weight: bold;
    color: #222;
}

/* Exam Grade Section */
.watupro-exam-grade {
    font-size: 20px;
    color: #007bff;
}

.watupro-exam-grade-description {
    margin-top: 20px;
    padding: 15px;
    background: #eef5ff;
    border-left: 5px solid #007bff;
    border-radius: 8px;
    text-align: left;
font-weight:normal;
}


/* Mobile Adjustments */
@media (max-width: 768px) {
    .watupro-exam-stats {
        flex-direction: column;
    }

    .watupro-exam-stat {
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }

    .watupro-exam-grade-description {
        text-align: center;
    }
}


.show-question-content{
font-size:16px;
font-weight:normal;
}

.question-choices, .show-question-choices{
font-size:16px !important;
}

.watupro-main-feedback{
color: #ffffff;
    font-size: 16px !important;
    border-bottom: 1px solid grey;
    padding-bottom: 40px;
    font-weight: normal;
    border: 1px solid lightgrey;
    padding: 16px;
    background: #007bff;
    border-radius: 10px;
font-weight:normal;
}

.watupro-main-feedback a {
    color: white;
    text-decoration: underline;
}

.watupro-question-choice span {
		  display: inline !important; /* added in WatuPRO 6.1.0.4 */
		}
@media 
			only screen and (max-width: 600px) {
}
