.angie-quiz-app-container-5349b6ab {
	max-width: 800px;
	margin: 0 auto;
	padding: 32px;
	box-sizing: border-box;
	font-family: system-ui, -apple-system, sans-serif;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.angie-quiz-theme-playful {
	border: 4px solid #f0f0f0;
	border-radius: 24px;
}
.angie-quiz-theme-playful .angie-quiz-btn, .angie-quiz-theme-playful .angie-quiz-option {
	border-radius: 24px;
	border: 2px solid transparent;
}

.angie-quiz-theme-professional {
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.angie-quiz-theme-professional .angie-quiz-btn, .angie-quiz-theme-professional .angie-quiz-option {
	border-radius: 4px;
}

.angie-quiz-topbar {
	margin-bottom: 30px;
}
.angie-quiz-progress-bg {
	background: #e2e8f0;
	height: 12px;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 10px;
}
.angie-quiz-progress-bar {
	background: #3b82f6;
	height: 100%;
	transition: width 0.4s ease;
}
.angie-quiz-stats {
	display: flex;
	justify-content: space-between;
	font-weight: bold;
	color: #64748b;
}

.angie-quiz-q-title {
	font-size: 24px;
	color: #1e293b;
	margin-bottom: 24px;
	text-align: center;
}

.angie-quiz-options {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.angie-quiz-option {
	background: #f8fafc;
	border: 2px solid #e2e8f0;
	padding: 16px 24px;
	font-size: 18px;
	color: #334155;
	cursor: pointer;
	transition: all 0.2s ease;
	text-align: left;
}
.angie-quiz-option:hover {
	border-color: #3b82f6;
	background: #eff6ff;
	transform: translateY(-2px);
}

.angie-quiz-opt-correct {
	background: #dcfce7 !important;
	border-color: #22c55e !important;
	color: #166534 !important;
}
.angie-quiz-opt-incorrect {
	background: #fee2e2 !important;
	border-color: #ef4444 !important;
	color: #991b1b !important;
}

.angie-quiz-fade-in {
	animation: angieQuizFadeIn 0.5s ease;
}

@keyframes angieQuizFadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.angie-quiz-results {
	text-align: center;
}
.angie-quiz-score-circle {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: #eff6ff;
	border: 8px solid #3b82f6;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 36px;
	font-weight: bold;
	color: #1e3a8a;
}
.angie-quiz-btn {
	background: #3b82f6;
	color: white;
	padding: 12px 24px;
	font-size: 18px;
	border: none;
	cursor: pointer;
	margin: 10px;
	transition: opacity 0.2s;
}
.angie-quiz-btn:hover {
	opacity: 0.9;
}
.angie-quiz-btn-outline {
	background: transparent;
	color: #3b82f6;
	border: 2px solid #3b82f6;
}

.angie-quiz-lead {
	text-align: center;
}
.angie-quiz-lead input {
	width: 100%;
	max-width: 400px;
	padding: 12px;
	font-size: 16px;
	margin-bottom: 20px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
}
