.circle {
	border-radius: 50%;
	border: 2px solid var(--fg-light-color);
	width: 1rem;
	height: 1rem;
}

.regex-toggle-active {
	background-color: #28a745;
}

.inline-block {
	display: inline-block;
}

.word-list-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

#code-search {
	display: flex;
	flex-direction: column;
	margin: 10px;
}

#code-search > * {
	margin: 5px;
	padding: 5px;
	text-align: center;
}

#code-input {
	text-align: center;
	font-family: "JetBrains Mono", "Courier New", monospace;
	margin-left: 10px;
	height: 2.5rem;
	width: 10rem;
}

#code-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

#code-list div {
	margin: 5px;
	padding: 5px 10px;
	font-family: "JetBrains Mono", "Courier New", monospace;
	font-size: 1.2rem;
	border: 1px solid var(--fg-light-color);
	border-radius: 8px;
}

#code-form {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

#sort-button {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	height: 100%;
	margin-left: 10px;
	padding: 2px 5px;
	border: 2px solid var(--fg-light-color);
	border-radius: 8px;
	background-color: transparent;
	font-weight: bold;
	color: #fff;
	width: 2.5rem;
	height: 2.5rem;
}

#sort-button:hover {
	cursor: pointer;
}

#regex-button {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 2px 10px;
	border: 2px solid var(--fg-light-color);
	border-radius: 8px;
	background-color: transparent;
	font-weight: bold;
	color: var(--fg-color);
	height: 2.5rem;
}

#regex-toggle:hover {
	cursor: pointer;
}

#regex-text {
	margin-left: 5px;
}
