body {
	background-color: #1a2c38;
	color: #b8bfc3;
	font-family: 'proxima-nova', sans-serif;
	margin-top: 2%;
	margin-bottom: 2%;
}

a {
	color: aqua;
}

button {
	border: 0;
	color: #013e01;
	background-color: #17d117;
	font-weight: 600;
	font-size: 20px;
	border-radius: 6px;
	padding: 5px;
	cursor: pointer;
}

button:hover {
	background-color: #1bd61b;
}

button:active {
	background-color: #18aa18;
}

.up-right {
	display: flex;
	flex-direction: column;
	gap: 5px;
	position: fixed;
	top: 10px;
	right: 10px;
}

.up-right img {
	width: 32px;
	height: 32px;
}

.bottom-left {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 2vw;
	background-color: #0a151c;
	position: fixed;
	bottom: 0;
	left: 0;
	padding: 1%;
	margin-bottom: 1%;
	margin-left: 1%;
	border-radius: 10%;
}

.hide {
	display: none;
}

.middle {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.top-logo {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-bottom: 10px;
	text-decoration: none;
}

.top-logo img {
	width: 168px;
}

.top-logo div {
	text-align: center;
	font-weight: 600;
	color: #e6e7e8;
}

input {
	height: 30px;
	font-size: 18px;
	background-color: #0a151c;
	border: 0;
	color: #e6e7e8;
	text-align: center;
	outline: 0;
	border-radius: 3px;
}

#seed_input {
	width: 635px;
	font-size: 16px;
}

label {
	font-weight: 600;
}

.checkbox-container label,
.checkbox-container input {
	vertical-align: middle;
}

.options {
	margin-top: 10px;
}
.options input {
	width: 100px;
}

#update_button {
	width: 300px;
	margin-top: 10px;
	margin-bottom: 10px;
}

#statistics {
	font-weight: 600;
	margin-top: 5px;
}

span.good {
	color: #04d47c;
}

span.bad {
	color: #f57373;
}

#loading {
	margin-top: 10px;
}

#results {
	display: grid;
	margin-top: 10px;
	width: 706px;
	grid-template-columns: repeat(auto-fill, 66px);
	grid-gap: 5px;
}

.prob-panel {
	width: 706px;
	background: #0a151c;
	border: 1px solid #2f4553;
	border-radius: 8px;
	padding: 12px;
	margin-top: 10px;
}

.prob-header {
	font-weight: 700;
	color: #e6e7e8;
	margin-bottom: 6px;
}

.prob-sub {
	font-size: 12px;
	opacity: 0.8;
	margin-bottom: 10px;
}

.prob-actions {
	display: flex;
	justify-content: flex-start;
	gap: 10px;
	margin-bottom: 8px;
}

.prob-table {
	width: 100%;
	border-collapse: collapse;
}

.prob-table th,
.prob-table td {
	padding: 6px 8px;
	border-bottom: 1px solid #2f4553;
	text-align: left;
}

.crash {
	margin: 5px;
	background-color: #2f4553;
	color: #d5dceb;
	text-align: center;
	font-weight: 600;
	border-radius: 25%;
	padding: 5px;
	min-width: 50px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.crash.bom {
	background-color: #00e701;
	color: #013e01;
}

.crash.ui-selected,
.crash.ui-selecting {
	outline: solid 2px #0079ff;
}
