html,
body {
	height: 100%;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	font-weight: bold;
}

.warning {
	text-align: center;
	color: #CC0000;
	font-weight: bold;
	font-size: 1.2em;
	border: dotted 2px #FF0000;
	padding: 10px 0;
}

#leftCol {
	float: left;
	width: 49%;
}

#rightCol {
	margin-left: 51%;
}

.titles {
	text-align: center;
	font-size: 0.8em;
	margin: 5px 10px;
	margin-left: 38px;
}

.titles div,
.questions div div div {
	float: left;
	width: 18%;
	padding: 3px 0;
}

.titles div:first-child,
.questions div div div:first-child {
	width: 25%;
}

.numbers {
	float: left;
	width: 35px;
	font-size: 1.4em;
	text-align: center;
	clear: both;
	padding-top: 10px;
}

.questions {
	margin: 5px 10px;
	margin-left: 38px;
	text-align: center;
	border: solid 2px #000;
	clear: right;
	zoom: 1;
}

.questions div div {
	clear: both;
	padding: 2px 3px;
	height: 20px;
}

.questions div div div {
	clear: none;
}

.questions div div div.firstChild {
	text-align: left;
	clear: right;
	font-size: 0.9em;
}

.bigInput {
	padding: 3px;
	font-size: 1.3em;
}

.button {
	padding: 3px 5px;
}

form {
	margin-top: 5%;
	text-align: center;
}

.resultsTable {
	border: solid 1px #000;
	margin: 15px;
}

.resultsTable th,
.resultsTable td {
	border: solid 1px #CCC;
	border-width: 1px 0;
	padding: 5px;
}

/* Admin Row & Columns */
.admin-row {
	display: flex;
	/* horizontal layout */
	gap: 30px;
	/* space between columns */
	align-items: flex-start;
	/* align top of columns */
	margin-bottom: 40px;
}

.admin-col {
	flex: 1;
	/* each column takes equal width */
	display: flex;
	/* flex for vertical stacking inside column */
	flex-direction: column;
	/* stack heading + form/table vertically */
}

/* Headings inside columns */
.admin-col h2 {
	text-align: left;
	/* left-align headings */
	margin: 0 0 10px 0;
	/* spacing below heading */
}

/* Forms inside admin-col */
.admin-col form {
	width: 100%;
	/* full width of column */
	margin: 0;
	text-align: left;
	/* left-align form inputs */
}

/* Tables inside admin-col */
.admin-col table {
	width: 100%;
	/* full width of column */
	margin: 0;
}

/* Optional: style buttons in forms */
.admin-col form input[type="submit"] {
	width: auto;
	padding: 5px 10px;
	cursor: pointer;
}