#shuffle-board {
	display: flex;
	flex-direction: row;
	gap: .25em;
	align-items: center;
	justify-content: center;
}

.shuffle-digit {
	text-align: center;
	caret-color: transparent;
	border: none;
	background: transparent;
	outline: none;
	user-select: none;
	padding: 0.25em;
	margin: 0;
	border: 1px solid lightgray;

	&:focus {
		border-color: black;
	}

	&.focus {
		border-color: black;
	}
}

#shuffle-input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}


@media screen and (max-width: 1280px) {
	div#settings {
		flex-direction: column;
		justify-items: center;
		align-items: stretch;

		&>input {
			flex-grow: 1;
		}
	}

	.shuffle-digit {
		font-size: 1.5em;
	}
}