/**
 * 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: 24px 20px 30px;
	background: #ebebeb;
	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;
}

.quiz-reset-button{
	width: 100%;
    padding: 10px;
    border: none;
    color: #fff;
    border-radius: 4px;
    background: #dc474b;
    box-shadow: 0px 3px 5px 0px rgba(64,64,64,0.75);
	-webkit-box-shadow: 0px 3px 5px 0px rgba(64,64,64,0.75);
	-moz-box-shadow: 0px 3px 5px 0px rgba(64,64,64,0.75);
	cursor: pointer;
}

.quiz-reset-button:focus,
.quiz-reset-button:active{
	outline-style: none;
}
