html, body {
	margin: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	color: #ffffff;
	background: #111111;
}

#tabs {
	display: flex;
	background: #333333;
}

.tab {
	flex: 1;
	text-align: center;
	padding: 10px;
	cursor: pointer;
	user-select: none;
}
.tab.active {
	background: #555555;
	font-weight: bold;
}

.panel {
	flex: 1;
	display: none;
	height: 100%;
	overflow: auto;
}
.panel.active {
	display: block;
}

#source {
	width: 100%;
	height: 100%;
}

#output {
	width: 100%;
	overflow: hidden;
}
#output > pre {
	padding: 10px;
	font-size: 14px;
	overflow: scroll;
	height: 100%;
}

#config {
	padding: 1em;
}

#flags {
	overflow: hidden;
	color: #ffffff;
	background: #222222;
	border: 0;
	padding: 0;
	height: 3em;
	width: 100%;
	padding-left: 1em;
	padding-right: 1em;
}

#recompile {
	height: 2em;
}
#short-link {
	position: absolute;
	height: 2em;
	right: 0;
}

#lang-select, #compiler-select, #libs-select {
	height: 2em;
	display: block;
}

#libs-select > div {
	display: block;
}
