.wordle-solver {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 2.5rem 0;
}
.wordle-solver p {
	width: 100%;
}
.valid-letters-container {
	display: flex;
	justify-content: space-evenly;
	width: 100%;
	margin: 1.5rem 0;
}
.valid-letter input {
	width: 4rem;
	height: 4rem;
	border: 0.125rem solid #97979c;
	border-radius: 0.625rem;
	padding: 0.3125rem;
	box-sizing: border-box;
	box-shadow: 0.125rem 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
	font-family: sans-serif;
	font-size: 2.5rem;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
}
.keyboard-container-row {
	width: 100%;
	margin: 0.625rem 0;
	text-align: center;
}
.keyboard-button {
	width: calc((100% / 10) - 1rem);
	max-width: 3rem;
	height: 3rem;
	margin: 0 0.25rem;
	padding: 0;
	border-radius: 0.625rem;
	border: none;
	font-size: 1.25rem;
	font-weight: bold;
	color: black;
	background-color: #d3d6da;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.keyboard-button.clicked-valid {
	background-color: darkgoldenrod;
	color: white;
}
.keyboard-button.clicked-invalid {
	background-color: #787c7e;
	color: white;
}
.button-container {
	margin: 0.625rem 0;
}
.submit-button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 3.125rem;
	height: 3.125rem;
	border: none;
	border-radius: 50%;
	color: white;
	font-size: 1.75rem;
	cursor: pointer;
	background-color: midnightblue;
	box-shadow: 0.125rem 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
}
.solution-count-container {
	margin: 0.625rem 0;
}
.alphabetical-list-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0.625rem 0;
}
.word-box {
	margin: 0.125rem;
	padding: 0.625rem;
	border-radius: 0.625rem;
	font-weight: bold;
	background-color: #d3d6da;
}
.loader {
	display: none;
	width: 2rem;
	height: 2rem;
	border: 0.25rem solid #f3f3f3;
	border-top: 0.25rem solid #3498db;
	border-radius: 50%;
	animation: spin 2s linear infinite;
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}
.visually-hidden {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
}