html, body {
	height: 100%;
}

body {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
	font-family: BlinkMacSystemFont, -apple-system, sans-serif;
}

input, button {
	font: inherit;
}

#content {
	display: flex;
	gap: 8px;
}
#inputs {
	flex-basis: 200px;
	flex-shrink: 0;
}
#results {
	flex-grow: 1;
}

#word {
	box-sizing: border-box;
	width: 100%;
	padding: 2px 6px;
	border: 1px solid #eaeaea;
	border-radius: 0;
}

#results ul {
	list-style-type: none;
	margin-top: 0;
	margin-bottom: 0;
	padding-left: 0;
	border-left:   1px solid #eaeaea;
	border-bottom: 1px solid #eaeaea;
	border-right:  1px solid #eaeaea;
}
#results li {
	padding: 2px 6px;
	border-top: 1px solid #eaeaea;
}
#results li:nth-of-type(2n) {
	background: #f4f4f4;
}
