.construct-section { }
.avatar-option.selected,  .template-option.selected
{
	/*border-color: #6366F1;
	background-color: #E0E7FF;*/
}
.avatar-option:hover,  .template-option:hover { /*background-color: #f0f4ff;*/ }
.complete-section { }
/* Hide default radio button */
.format-option.hidden { display: none; }
/* Custom radio button styling */
.radio-box
{
	display: inline-block;
	width: 18px;
	height: 18px;
	border: 2px solid #6366F1;
	border-radius: 50%;
	position: relative;
}
.radio-box::after
{
	content: "";
	width: 10px;
	height: 10px;
	background-color: #6366F1;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.2s;
}
/* When the radio is selected */
.format-option:checked + .radio-box::after { opacity: 1; }
/* Enable download button */
#downloadBtn.enabled
{
	background-color: #6366F1;
	cursor: pointer;
}
.text-content-container
{
	/*max-width: 500px;
	margin: 20px auto;
	font-family: Arial, sans-serif;*/
}
.text-label
{
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.word-limit
{
	font-size: 12px;
	color: #888;
}

.word-count
{
	font-size: 12px;
	color: #555;
	text-align: right;
	margin-top: 5px;
}
