.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;
}
.mcq-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.mcq-hint {
    background-color: #fff7d1;
    border-left: 4px solid #ffc107;
    padding: 10px 12px;
    margin-top: 12px;
    font-style: italic;
    font-size: 16px;
}
.mcq-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.mcq-meta-field {
    flex: 1 1 45%;
    background-color: #f2f2f2; /* Light gray box */
    padding: 10px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
	justify-content: space-between;
}

.mcq-meta-label {
    color: #333;
    font-weight: 500;
    font-size: 0.95em;
}

.mcq-box {
    padding: 4px 10px;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    white-space: nowrap;
    font-size: 0.9em;
}

.mcq-subject {
    background-color: #2196f3;
}

.mcq-topics {
    background-color: #ff9800;
}

.mcq-age {
    background-color: #9c27b0;
}

/* Educational Level Colors */
.mcq-level.level-beginner {
    background-color: #f44336; /* Red */
}
.mcq-level.level-intermediate {
    background-color: #4caf50; /* Green */
}
.mcq-level.level-advanced {
    background-color: #3f51b5; /* Blue */
}

/* Responsive */
@media screen and (max-width: 600px) {
    .mcq-meta-field {
        flex: 1 1 100%;
    }
}

.mcq-icon {
    height: 1em;
    width: 1em;
    vertical-align: middle;
    margin-right: 6px;
    fill: white;
}
.mcq-option.disabled {
    pointer-events: none;
    opacity: 0.8;
}
.mcq-option.correct {
    background-color: #d4edda;
}
.mcq-option.incorrect {
    background-color: #f8d7da;
}
.mcq-option.disabled {
    pointer-events: none;
    opacity: 0.7;
}
.mcq-option.clicked {
    font-weight: bold;
}
.mcq-show-result-button {
    padding: 10px 16px;
    background-color: #3f51b5;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
	width: 100%;
}

.mcq-result-box {
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.mcq-result-box h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
}

.mcq-result-list li {
    margin-bottom: 6px;
    font-size: 0.95em;
	    display: flex;
    justify-content: space-between;
}
.total-questions, .attempted-questions, .not-attempted-questions, .correct-answers, .incorrect-answers, .correct-percent, .incorrect-percent {
    color: white;
    padding: 0 10px;
    border-radius: 3px;
}
.total-questions {
	background: blue;
}
.attempted-questions{
	background: #2aa6a8;
}
.not-attempted-questions {
	background: rgba(255,105,0,1);
}
.correct-answers {
	background: green;
}
.incorrect-answers {
	background: red;
}
.correct-percent {
	background: #23b72c;
}
.incorrect-percent {
	background: darkred;
}