/* General */

:root {
	--col-accent:	#2ab4dd;
	--col-regular:	#ffffff;
	--col-bg:		#333038;
	--col-fg:	#1b1a1d;
}

body {
	font-family: Arial, sans-serif;
	font-size: 12pt;
	line-height: 150%;
	color: var(--col-regular);
	background-color: var(--col-bg);
	margin: 90pt 0pt 0pt 0pt;
}

/* Effects */

.fullwidth { width: 100%; }

.rightify { float: right; }

/* Text tags */

h1, h2, h3, h4, h5, h6 {
	font-family: Verdana, sans-serif;
	margin: 0px;
	padding-top: 3pt;
}

h1 {
	font-size: 36pt;
	font-weight: normal;
}

h2 { font-size: 16pt; }	/* We only need headers 1-3 */

hr {
	border: 2pt solid black;
	border-radius: 1pt;
}

p {
	margin-bottom: 3pt;
	margin-top: 8pt;
}

ul, ol {
	padding-inline-start: 15pt;
}

/* Headers */

#headerbox {
	background-color: var(--col-accent);
	position: fixed;
	width: 100%;
	padding: 10px;
	left: 0px;
	top: 0px;
}

#headerimg {
	float: left;
	height: 50pt;
	margin-right: 20pt;
}

#headerlink {
	line-height: 350%;
}

#headerright {
	float: right;
	width: 100%;
	font-size: 17.5pt;
	font-weight: bold;
	text-align: right;
	padding-right: 25pt;
}

#headerright > * {
	margin-left: 10pt;
}

/* Statuses */

.stat-online { color: green; }

.stat-offline { color: red; }

.stat-warning { color: yellow; }

[class^="stat-"] { font-weight: bold; }

/* Tables */

table.layoutonly {
	width: 100%;
	border: none;
}

table.italicize tr td:first-child {
	font-style: italic;
}

/* Bodyboxes and flexboxes */
.flexy {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	margin-left: auto;
	margin-right: auto;
}

.bodybox, .flexy { width: 80%; }

.bodybox-mini { width: 45%; }

.bodybox, .bodybox-mini {
	margin-top: 0pt;
	margin-bottom: 12pt;
	margin-left: auto;
	margin-right: auto;
	background-color: var(--col-fg);
	padding: 12pt;
	border-top: 3pt solid var(--col-accent);
    border-radius: 0pt 0pt 10pt 10pt;
}

/* Links */
a:not(.hidden-link) {
	color: var(--col-accent);
	font-style: italic;
}

a.hidden-link {
	color: inherit;
	text-decoration: none;
}

/* Footer */
footer {
	background-color: var(--col-fg);
	font-size: 10pt;
	padding: 6pt;
}