  /* Form Container Style */
h2 {
    color: #333; /* Sets the text color */
    font-size: 20px; /* Sets the font size */
    font-weight: 600; /* Makes the font bold */
    padding: 10px; /* Adds padding inside the heading */    
}

.dashicons-category {
    font-size: 1.0em;
    margin-right: 15px;
}

#successMessage {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: green;
    padding: 20px 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    z-index: 1000;
    text-align: center;
    animation: floatIn 3000ms;
}

.smiley-face {
    display: block; /* Makes the smiley face appear on top of the text */
    font-size: 48px; /* Adjust the size as needed */
    margin-bottom: 10px; /* Space between the smiley face and the text */
    padding: 20px;
}

@keyframes floatIn {
    from {
        top: -50px;
        opacity: 0;
    }
    to {
        top: 20px;
        opacity: 1;
    }
}


/* Success and Error Messages */
/*.success-message, .error-message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
    color: #fff;
}

.success-message {
    background-color: #4CAF50;
}

.error-message {
    background-color: #f44336;
}*/
.dashicons-unlock {
    font-size: 1.0em;
    margin-right: 15px;
}
/* Container Fluid */
.container-fluid {
    padding: 10px; /* Remove any default padding if necessary */
}

/* Main Header */
.wlsm-main-header {
    background-color: #f5f6ff; /* Light grey background */
    padding: 20px; /* Padding around the content */
    border-radius: 5px; /* Optional: rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow for depth */
}

/* Heading (h1) */
.wlsm-main-header .wlsm-page-heading {
    text-align: center; /* Center-align the text */
    color: #333; /* Optional: set text color, if needed */
    margin: 0; /* Remove default margin */
    font-size: 1.75rem; /* Adjust font size as needed */
}

/* Icon in Heading */
.wlsm-main-header .wlsm-page-heading .dashicons {
    color: #007bff; /* Color for the icon (Bootstrap primary color) */
    margin-right: 10px; /* Space between icon and text */
}

/*==================================================================  Questions CSS    ===============================*/

.form-container-question {
    max-width: 820px;
    margin: 20px auto;
/*    margin-left: 20px;*/
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Labels and Inputs */
.form-container-question .question-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-container-question input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Submit Button */
.form-container-question .btn-submit {
    background-color: deepskyblue;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}
}

.form-container-question .btn-submit:hover {
    background-color: #76B4D8;
}

h1 {
    color: #007bff;
    text-align: center;
    font-size: 16px;
    font-weight: 450;
}

.question {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    padding: 7px;
    width: 100%;
    max-width: 1200px;
}

.question p {
    font-size: 16px;
    margin: 10px 0;
}

.answer {
    margin-left: 20px;
    margin-bottom: 10px;
}

input[type="radio"] {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .question {
        width: 90%;
        margin: 10px;
    }
}

/*==============================================================*/

#quizForm1,
#quizForm2,
#quizForm3,
#quizForm4,
#quizForm5,
#quizForm6,
#quizForm7,
#quizForm8,
#quizForm9,
#quizForm10,
#quizForm11,
#quizForm12,
#quizForm13,
#quizForm14, .chapter-section, .question, .answer-option {
    display: block; /* Ensures each answer option is on its own line */
    margin-bottom: 5px; /* Reduces space between options */
}

#quizForm1,
#quizForm2,
#quizForm3,
#quizForm4,
#quizForm5,
#quizForm6,
#quizForm7,
#quizForm8,
#quizForm9,
#quizForm10,
#quizForm11,
#quizForm12,
#quizForm13,
#quizForm14, .chapter-section, .question, .answer-option {
    margin-top: 20px; /* Adds space between questions for readability */
}

#quizForm1,
#quizForm2,
#quizForm3,
#quizForm4,
#quizForm5,
#quizForm6,
#quizForm7,
#quizForm8,
#quizForm9,
#quizForm10,
#quizForm11,
#quizForm12,
#quizForm13,
#quizForm14, .chapter-section, .question, .answer-option :last-child {
    margin-bottom: 0; /* Removes bottom margin from the last option to reduce extra space */
}




