/* Multiple choice question styles */

.question-section-title {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #4a4a4a;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 8px;
}

.question-item {
    margin-bottom: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.question-text {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333;
}

.question-options {
    margin-left: 10px;
}

.option {
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
}

.option label {
    cursor: pointer;
    padding-left: 10px;
    font-size: 1em;
    color: #555;
}

.option input[type="radio"] {
    cursor: pointer;
    margin-right: 5px;
    transform: scale(1.1);
}

.question-feedback {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.question-feedback.correct {
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border-left: 4px solid #2e7d32;
    display: block;
}

.question-feedback.incorrect {
    background-color: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border-left: 4px solid #c62828;
    display: block;
}

.question-feedback.warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ff8f00;
    border-left: 4px solid #ff8f00;
    display: block;
}

.button-container {
    margin: 20px 0;
    text-align: center;
}

/* Animation for feedback */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.question-feedback {
    animation: fadeIn 0.3s ease-in-out;
}
