/*

	blue: #0000a8
	cyan: #57ffff
	cyan-dark:#00a8a8;
	yellow: #ffff57;
	gray: #a8a8a8;
	
*/

b {
	color: #ffff57;
	font-weight: 400;
}

html,
body {
	height: 100%;
}

body {
	background: #0000a8;
	margin: 0;
	color: #57ffff;
	font-size: 32px;
	font-family: 'VT323', monospace;
	padding: 16px;
	box-sizing: border-box;
	overflow: hidden;
	user-select: none;
	line-height: 32px;
}

main {
	display: flex;
	box-sizing: border-box;
	height: 100%;
	width: 1200px;
	margin: 0 auto;
}

section {
	border-width: 6px 8px;
	border-style: double;
	border-color: #57ffff;
	display: flex;
	flex: 1;
	margin: 0 4px;
	position: relative;
}

.section-title {
	position: absolute;
	top: -22px;
	left: 0;
	text-align: center;
	display: flex;
	justify-content: center;
	width: 100%;
}

.section-title > span {
	background: #0000a8;
	padding: 2px 16px;
	box-sizing: border-box;
}

.active {
	color: #0000a8 !important;
	background: #57ffff !important;
}

.columns {
	display: flex;
	flex: 1;
}

.column {
	padding: 22px 8px;
	display: flex;
	flex-flow: column;
	width: 100%;
	border-width: 0 2px;
	border-color: #57ffff;
	border-style: solid;
	box-sizing: border-box;
}

.column:first-child {
	border-width: 0 2px 0 0;
}
.column:last-child {
	border-width: 0 0 0 2px;
}

.column-header {
	color: #ffff57;
}

.column-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-flow: column;
}

.column-list > li {
	width: 100%;
}

.column-list > li:hover {
	background: #57ffff;
	color: #0000a8;
	cursor: pointer;
}

.status {
	display: flex;
	flex-flow: column;
	flex: 1 1 auto;
	box-sizing: border-box;
}

.status > div {
	padding: 22px;
	border-width: 2px 0;
	border-color: #57ffff;
	border-style: solid;
	display: flex;
	flex-flow: column;
	align-items: center;
}

.status > div:first-child {
	border-width: 0 0 2px 0;
}

.status > div:last-child {
	border-width: 2px 0 0 0;
}
