/* Base font size reset */
body {
	font-size: 14px;
	line-height: 1.5;
}

h1 { font-size: 1.75rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

#header {
	background-color: black;
	color: white;
	padding: 10px 0;
}

#header h1 {
	margin-bottom: 0;
	line-height: 1.2;
}

#navigation {
	background-color: #4d9473;
	border-top: 1px solid #73deac;
	border-bottom: 1px solid #305c48;
	padding: 12px 0;
}

#navigation ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

#navigation li {
	display: inline-block;
}

#navigation li a {
	padding: 10px 20px;
	text-decoration: none;
	color: white;
	font-weight: bold;
	border-radius: 16px;
	display: inline-block;
}

#navigation li a:hover {
	background-color: #305c48;
}

#navigation li.active a {
	background-color: #65c397;
}

#footer {
	background-color: #111;
	color: #666;
	padding: 10px 0;
}

#footer a {
	color: #666;
	text-decoration: none;
}

#footer a:hover {
	color: white;
	text-decoration: underline;
}

#banner {
	background-image: url(/static/img/bg_banner.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 240px;
	padding: 40px 0;
	font-size: 16px;
}

#banner h2 {
	color: white;
	font-weight: bold;
	text-shadow: #555 0.1em 0.1em 0.2em;
}

#content {
	background-image: url(/static/img/bg_content.png);
	background-repeat: repeat-x;
	padding: 20px 0;
}

h1, h2, h3 {
	font-family: 'Metrophobic', arial, serif;
}

h2 {
	color: #333;
}

form {
	display: block;
}

#breadcrumbs {
	padding: 8px 4px;
}

table.dataform td {
	padding: 4px;
	border: 0px;
}

table.dataform {
	margin: 0px;
	margin-bottom: 0px;
}

.rounded-group {
	border: 1px solid #ddd;
	border-radius: 8px;
	background-color: #eee;
}

fieldset {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 8px;
}

table.datalist {
	border-collapse: collapse;
	min-width: 50%;
	border: 1px solid #ddd;
}
table.datalist th {
	padding: 0.3em 1em;
	border-bottom: 1px solid #eee;
	text-align: left;
	font-weight: bold;
	background-color: #ddd;
}
table.datalist td {
	padding: 0.5em;
	border-left: 1px solid #eee;
}
table.datalist tr:nth-child(odd) td {
	background-color: #eee;
}

ul.tool-list {
	font-size: 80%;
}
ul.tool-list li {
	margin: 8px;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 6px 20px 0px 20px;
	background-color: white;
	width: 300px;
	float: left;
}
ul.tool-list li a {
	display: block;
}

ul.tool-list , ul.history-list {
	padding: 0px;
	list-style: none;
}

ul.history-list li {
	margin: 8px 0px;
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 6px;
}

ul.tool-list li:hover, ul.history-list li:hover {
	background-color: #eee;
}

ul.history-list li.selected {
	background-color: #F6F6C9;
}

ul.tool-list li a, ul.history-list li a {
	text-decoration: none;
	color: black;
}
