.mcq-container {
    background-color: #f1f6fb; /* Light red background for the question */
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.mcq-container h4 {
     display: flex;
    align-items: stretch;
    border-radius: 2px;
    margin: 0;
    
    transition: background-color 0.3s ease;
    font-size: 16px;
    font-weight: bold;
    color: #222;

}

.mcq-question-text{
  display: flex;

}

.mcq-question-number {
    display: flex;
    background: #ff6b6b;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 2px;
    margin-right: 10px;
  align-items: center;
  
}

.mcq-option {
    display: flex;
    align-items: stretch;
    border-radius: 2px;
    margin: 10px 0;
    background-color: #ffffff; /* Light greenish background */
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
    font-weight: bold;
    color: #222;
}

.mcq-option:hover {
    background-color: #e3f2fd; /* Light blue hover effect */
}

.mcq-option.answered.correct {
    background-color: #d4edda !important; /* Green fade */
    border-left: 5px solid #28a745;
}

.mcq-option.answered.incorrect {
    background-color: #f8d7da !important; /* Red fade */
    border-left: 5px solid #dc3545;
}

.mcq-label {
    font-weight: bold;
    margin-right: 5px;
  padding: 12px;
    background: #ebe7ff;
  display: flex;
    align-items: center;
}
.mcq-text {
    font-size: 16px;
    flex: 1;
  padding: 10px;
}

.mcq-simple-text {
    padding: 10px 12px;
    background-color: #ffffff;
}
