#quizz {
	overflow: hidden;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	z-index: 999;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#quizz.hide {
	display: none;
}

#quizz article {
	display: none;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 4px 32px 0 rgba(30, 126, 52, 0.1);
	padding: 2.2rem 2rem 1.5rem 2rem;
	max-width: 95vw;
	min-width: 320px;
	margin: 0.5rem 0;
}

#quizz .quizz-choices {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1.2rem;
}

#quizz .quizz-choices button {
	background: #f6fff8;
	color: #1e7e34;
	border: 2px solid #1e7e34;
	border-radius: 1.2rem;
	padding: 0.9rem 2.2rem;
	font-size: 1.15rem;
	font-weight: 600;
	transition: background 0.2s, color 0.2s, border 0.2s, transform 0.15s;
	box-shadow: 0 2px 12px 0 rgba(30, 126, 52, 0.07);
	cursor: pointer;
	outline: none;
}
#quizz .quizz-choices button:hover:not(:disabled) {
	background: #1e7e34;
	color: #fff;
	border-color: #155724;
	transform: scale(1.04);
}
#quizz .quizz-choices button:disabled {
	background: #e9ecef;
	color: #b1b1b1;
	border-color: #b1b1b1;
	cursor: not-allowed;
}

#quizz .quizz-reponse p {
	font-size: 1.2rem;
	color: #1e7e34;
	background: #eafbe7;
	border-left: 5px solid #1e7e34;
	padding: 1rem 1.5rem;
	border-radius: 0.8rem;
	box-shadow: 0 2px 8px 0 rgba(30, 126, 52, 0.06);
	margin: 1.2rem 0 0 0;
	font-weight: 600;
	text-align: center;
}

#quizz article h2 {
	color: #1e7e34;
	font-size: 1.5rem;
	margin-bottom: 0.7rem;
}
#quizz article p {
	font-size: 1.1rem;
	margin: 0.5rem 0 0 0;
}

@media (max-width: 600px) {
	#quizz article {
		padding: 1.2rem 0.5rem 1rem 0.5rem;
		min-width: 0;
	}
	#quizz .quizz-choices button {
		font-size: 1rem;
		padding: 0.7rem 1rem;
	}
}

#quizz article:first-child {
	display: flex;
}

#quizz #quizz-close {
	margin-top: 2rem;
	background: none;
	border: none;
	color: #1e7e34;
	font-size: 1.1rem;
	cursor: pointer;
	text-decoration: underline;
}

.quizz-btn-container {
	text-align: center;
	margin: 1.5rem 0;
	position: absolute;
	bottom: 10%;
	right: 50%;
	transform: translateX(50%);
}

#quizz-btn {
	font-size: 1.2rem;
	padding: 0.7rem 2rem;
	border-radius: 1.5rem;
	background: #1e7e34;
	color: #fff;
	border: none;
	cursor: pointer;
	font-weight: 600;
	animation: all 0.6s ease-in-out;
}

#quizz-btn:hover {
	background: #155724;
	transform: scale(1.05);
}
