h1 {
	color: #0000ff;
	text-align: center;
	//background-color: #d0d0d0;
}

h2 {
	color: #0000ff;
  text-align: left;
}

h3 {
	color: #ffffff;
	font-family: Calibri; sans-serif;
  font-size: 11pt;
	text-align: center;
	background-color: #ff0000;
}

body {
	font-family: Calibri; sans-serif;
  font-size: 12pt;
	padding: 30px 0px 0px 230px;
	background-color: #c0c0c0;
}

/* Navigation-Bar am oberen Rand
   Quelle: https://www.w3schools.com/css/css_navbar_horizontal.asp */
   
ul {
  list-style-type: none;
  padding: 0;
  overflow: hidden;
  background-color: #555;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 220px;
}

ul li {
  float: top;
  border-bottom:2px solid #bbb;
}

li:last-child {
  border-bottom: none;
}

li a {
  display: block;
  color: white;
  text-align: left;
  padding: 6px 10px;
  text-decoration: none;
}

li a:hover:not(.active) {
  background-color: #999;
}

.active {
  color: white;
  background-color: #0000FF;
}

.error {
  color: white;
  background-color: red;
}

.advice {
  color: black;
  background-color: yellow;
}

.allclear {
  color: white;
  background-color: green;
}

/* Tooltip
   Quelle: https://www.w3schools.com/css/tryit.asp?filename=trycss_tooltip */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  background-color: none;
  color: yellow;
  font-size: 65%;
  text-align: center;
  border-radius: 5px;
  padding: 5px 0;
  width: 100px;
  position: absolute;
  z-index: 1;
  top: 5px;
  right: 90%;
  }

.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* Tabellenformat */
table {
	margin-left: 0px;
}

table td {
	text-align: center;
	border: 1px solid black;
	border-collapse: separate;
	padding: 2px 5px;
}

table th {
	text-align: center;
	background: blue;
	color: white;
	border: solid 1px blue;
	border-collapse: separate;
	padding: 3px 5px;
}

input[type="select"] {
  font-size: 10pt;
}

/* Checkbox */
input[type="checkbox"]:disabled {
	background-color: #000;
	outline: 1px solid black;
}

input[type="checkbox"][readonly] {
  pointer-events: none !important;
}

/* Submit-Button */
#save,#reload,#delete {
	background-color: #a0a0a0;
	height: 28px;
	width: 155px;
}	
#save:hover {
	background-color: green;
	color: white;
}
#reload:hover {
	background-color: blue;
	color: white;
}
#delete:hover {
	background-color: red;
	color: white;
}

/* Weitere Design-Elemente */

#boxGreen {
  color: white;
  background-color: green;
  padding: 10px;
  border: 1px solid black;
}
