/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

.button-hover-red:hover {
	background-color: #dc3545 !important;
	border-color: #dc3545 !important;
	outline-color: #dc3545 !important;
}

/* Navigation hover and active states */
.primary-menu .menu-link:hover,
.primary-menu .menu-item:hover > .menu-link,
.primary-menu .menu-item.current > .menu-link,
.primary-menu .menu-item.active > .menu-link {
	color: #dc3545 !important;
}

/* Quiz Preview Styles */
.quiz-preview-container {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.quiz-preview-header {
	background: #212529;
	color: white;
	padding: 25px 30px;
	text-align: center;
}

.quiz-preview-content {
	padding: 30px;
}

.quiz-question-section.hidden {
	display: none;
}

.quiz-category {
	color: #dc3545;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
}

.quiz-question-text {
	font-size: 18px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 20px;
	line-height: 1.5;
}

.quiz-answer-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.quiz-answer-option {
	position: relative;
	cursor: pointer;
}

.quiz-answer-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.quiz-answer-label {
	display: block;
	padding: 14px 16px;
	background: #f8f9fa;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 15px;
	transition: all 0.2s ease;
}

.quiz-answer-option:hover .quiz-answer-label {
	background: #e9ecef;
	border-color: #dc3545;
}

.quiz-answer-option input[type="radio"]:checked + .quiz-answer-label {
	background: #fff5f5;
	border-color: #dc3545;
	font-weight: 500;
}

.quiz-answer-text {
	font-weight: 600;
	color: #1a1a1a;
	margin-right: 6px;
}

.quiz-submit-button {
	width: 100%;
	padding: 14px;
	margin-top: 20px;
	background: #212529;
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.quiz-submit-button:hover {
	background: #dc3545;
}

.quiz-submit-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.quiz-submit-button:disabled:hover {
	background: #212529;
}

.quiz-results-section {
	display: none;
}

.quiz-results-section.active {
	display: block;
}

.quiz-style-badge {
	display: inline-block;
	padding: 6px 14px;
	background: #dc3545;
	color: white;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
}

.quiz-style-title {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 15px;
}

.quiz-style-description {
	font-size: 15px;
	line-height: 1.6;
	color: #4a4a4a;
	margin-bottom: 15px;
}

.quiz-research-note {
	background: #fff8e1;
	border-left: 4px solid #ffc107;
	padding: 12px 16px;
	margin: 15px 0;
	font-size: 14px;
	color: #856404;
	border-radius: 4px;
}

.quiz-cta-subtext {
	text-align: center;
	margin-top: 10px;
	font-size: 13px;
	color: #6c757d;
}

@media (max-width: 768px) {
	.quiz-preview-content {
		padding: 20px;
	}
	.quiz-question-text {
		font-size: 16px;
	}
	.quiz-answer-label {
		padding: 12px;
		font-size: 14px;
	}
	.quiz-style-title {
		font-size: 20px;
	}
}
