.wl-mcq-wrapper {
	margin: 2rem 0;
}

.wl-mcq-question-container {
	background: var(--wl-color-white);
	border: 1px solid var(--wl-color-border);
	border-radius: var(--wl-radius-lg);
	padding: 1.5rem;
	margin-bottom: 2rem;
	box-shadow: var(--wl-shadow-sm);
}

.wl-mcq-question {
	font-size: 1.15rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--wl-color-primary);
}

.wl-mcq-options {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.wl-mcq-option {
	display: flex;
	align-items: center;
	padding: 0.75rem 1rem;
	border: 1px solid var(--wl-color-border);
	border-radius: var(--wl-radius-md);
	background: var(--wl-color-background);
	cursor: pointer;
	transition: all 0.2s;
	font-weight: 500;
}

.wl-mcq-option:hover {
	background: #eef2ff; /* Light blue */
	border-color: #c7d2fe;
}

.wl-mcq-option-label {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--wl-color-primary);
	color: var(--wl-color-white);
	font-size: 0.8rem;
	margin-right: 1rem;
	flex-shrink: 0;
}

/* States */
.wl-mcq-option.correct {
	background: #dcfce7; /* Light green */
	border-color: #86efac;
	color: #166534;
}

.wl-mcq-option.correct .wl-mcq-option-label {
	background: #16a34a;
}

.wl-mcq-option.incorrect {
	background: #fee2e2; /* Light red */
	border-color: #fca5a5;
	color: #991b1b;
}

.wl-mcq-option.incorrect .wl-mcq-option-label {
	background: #dc2626;
}

.wl-mcq-explanation {
	display: none;
	background: #f8fafc;
	border-left: 4px solid var(--wl-color-blue);
	padding: 1rem;
	border-radius: 0 var(--wl-radius-md) var(--wl-radius-md) 0;
	margin-top: 1rem;
	font-size: 0.95rem;
}

.wl-mcq-explanation strong {
	color: var(--wl-color-primary);
}

.wl-view-answer-btn {
	background: transparent;
	border: 1px solid var(--wl-color-blue);
	color: var(--wl-color-blue);
	padding: 0.5rem 1rem;
	border-radius: var(--wl-radius-md);
	cursor: pointer;
	font-weight: 600;
	transition: all 0.2s;
}

.wl-view-answer-btn:hover {
	background: var(--wl-color-blue);
	color: var(--wl-color-white);
}
