/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.wp-quiz-wrapper {
	max-width: 700px;
	margin: 30px auto;
	padding: 20px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.quiz-question {
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.quiz-question p {
	font-size: 16px;
	margin-bottom: 10px;
}

.quiz-option {
	display: block;
	padding: 6px 10px;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.3s;
	font-size: 16px;
}

.quiz-option:hover {
	background-color: #f9f9f9;
}

.quiz-feedback {
	margin-top: 10px;
	font-weight: bold;
	font-size: 14px;
}

.quiz-explanation {
	margin-top: 10px;
	color: #666;
	font-size: 14px;
}
