body {
	margin: 5% auto;
	background-color: #222222;
	color: white;
	font-family: -apple-system, BlinkMacSystemFont, "Verdana", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.8;
	width: 90%;
	max-width: 800px;
}

code {
	background: black;
}

a {
	border-bottom: 1px solid white;
	color: white;
	text-decoration: none;
}

a:hover {
	border-bottom: 0;
}

img {
	width: 100%;
	height: auto;
}

form {
	display: table;
}

p {
	display: table-row;
}

label {
	display: table-cell;
	padding-right: 20px;
}

input {
	display: table-cell;
	background-color: #222222;
	color: white;
}

button {
	background-color: #222222;
	color: white;
}

footer {
	text-align: right;
	padding: 3px;
}

#logMessage {
	color: green;
	font-weight: bold;
}

.required:after {
	content: " *";
	color: red;
}

/* https://www.w3schools.com/howto/howto_css_tooltip.asp */
/* Tooltip container */
.tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted white;
	/* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
	visibility: hidden;
	width: 300px;
	background-color: #555;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	border-radius: 6px;

	/* Position the tooltip text */
	position: absolute;
	z-index: 1;
	top: 135%;
	left: 50%;
	margin-left: -150px;

	/* Fade in tooltip */
	opacity: 0;
	transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent #555 transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}

/** Hide arrows in input fields **/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}