html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

.results {
	display: flex;
	flex-flow: row wrap;
}

.results > table, .results > div {
	border: thin solid darkgray;
	box-shadow: 0.3rem 0.3rem 0.5rem darkgray;
	margin: 0.5rem;
	height: fit-content;
}

.results > table:hover {
	border-color: black;
}

.results > table > caption, .results > div > div {
	color: white;
	background-color: lightgray;
	padding: 0.2rem;
	text-align: center;
}

.results > div > fieldset {
	margin-bottom: 0.1rem;
	padding-bottom: 1rem;
}

.results > table tr.header {
	background-color: lightgreen;
}

.results > table th {
	user-select: none;
	padding-left: 0.2em;
	padding-right: 0.2em;
}

.results > table tr:not(.header) {
	text-align: left;
}

.results > table td {
	text-align: center;
}

.results > table tr:not(.header):nth-child(2n) {
	background-color: aliceblue;
}

.results > table tr:not(.header):hover {
	background-color: yellow;
}

.loader {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #d3d3d3d3;
}

.lds-heart {
	display: inline-block;
	position: relative;
	width: 128px;
	height: 128px;
	transform: rotate(45deg);
	transform-origin: 64px 64px;
}
.lds-heart div {
	top: 64px;
	left: 64px;
	position: absolute;
	width: 64px;
	height: 64px;
	background: #27bea5;
	animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
.lds-heart div:after,
.lds-heart div:before {
	content: " ";
	position: absolute;
	display: block;
	width: 64px;
	height: 64px;
	background: #27bea5;
}
.lds-heart div:before {
	left: -44px;
	border-radius: 50% 0 0 50%;
}
.lds-heart div:after {
	top: -44px;
	border-radius: 50% 50% 0 0;
}
@keyframes lds-heart {
	0% {
		transform: scale(0.95);
	}
	5% {
		transform: scale(1.1);
	}
	39% {
		transform: scale(0.85);
	}
	45% {
		transform: scale(1);
	}
	60% {
		transform: scale(0.95);
	}
	100% {
		transform: scale(0.9);
	}
}

.wrapper {
	width: 100%;
	height: 60vh !important;
	background-color: #f5f9f9;
}

.plot {
	width: 100%;
	height: 100%;
}

.hidden {
	display: none;
}

#log-area {
	border: none;
	width: 20em;
}

