.ETTT2 .input--small{
	text-align: center;
}

/* #region answer-option style */
.ETTT2 .answer-option {
	background-color: #ffd966; /* bright yellow */
	border: 3px solid #ff9900; /* orange border */
	border-radius: 50%;
	color: #4a4a4a; /* dark grey for good contrast */
	font-size: 1.5rem;
	font-weight: bold;
	width: 3.5rem;
	height: 3.5rem;
	line-height: 1.5rem;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	transition: transform 0.2s, background-color 0.2s;
}
.ETTT2 .answer-option--selected {
	background-color: #a4c2f4;  /* light blue */
	border-color: #6d9eeb;
	color: #ffffff;
	transform: scale(1.05);
}
.ETTT2 .answer-option:hover {
	background-color: #ffe599;
	transform: scale(1.1);
}
.ETTT2 .answer-option:active {
background-color: #f1c232;
transform: scale(0.95);
}

.ETTT2 .answer-option--correct{
	background-color: greenyellow !important;
}
.ETTT2 .answer-option--incorrect{
	background-color:brown !important;
	color: white !important;
}
/* #endregion */