.hidden-words-container {
	width: 100%;
	max-width: 700px;
}

.resize-container {
	position: relative;
}

.hiddenwords_area {
	position: relative;
	user-select: none;
	touch-action: none;
}

.hiddenwords_letters_area {
	display: grid;
	gap: 2px;
	background: #dce8f3;
	border: 2px solid #00a3e0;
	border-radius: 6px;
	padding: 4px;
	cursor: crosshair;
}

.hiddenwords_letters_area .hw-cell {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	font-size: clamp(14px, 2vw, 20px);
	font-weight: 700;
	color: #001e46;
	aspect-ratio: 1;
	border-radius: 3px;
	transition: background 0.15s ease, color 0.15s ease;
}

.hiddenwords_letters_area .hw-cell.selected {
	background: #b3e0f7;
}

.hiddenwords_letters_area .hw-cell.found {
	background: #00a3e0;
	color: #fff;
}

.hiddenwords_letters_area .hw-selection-line {
	position: absolute;
	background: rgba(0, 163, 224, 0.35);
	border: 2px solid #00a3e0;
	border-radius: 4px;
	pointer-events: none;
	z-index: 2;
}

ul.hiddenwords_progress {
	list-style: none;
	margin: 1.2rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

ul.hiddenwords_progress li {
	background: #e8f4fc;
	border: 1px solid #b3d9f0;
	border-radius: 20px;
	padding: 6px 14px;
	font-size: 13px;
	font-weight: 600;
	color: #001e46;
	transition: all 0.3s ease;
}

ul.hiddenwords_progress li.found {
	background: #00a3e0;
	border-color: #00a3e0;
	color: #fff;
	text-decoration: line-through;
}

.guides_popup_btn_component {
	margin-top: 1rem;
}
