header {
	background: #ffebe6;
	display: grid;
}
nav {
	background: #fdfcf3;
}
main {
	background: #ebf5d7;
	display: block;
}
footer {
	background: #e6f2f7;
}
body {
    font-family: Arial, Helvetica, sans-serif;font-size: 1em;
	display: grid;
    background: url(Background.svg);
    background-size: 50px 50px;
}
/* ==================================================== ONOFF ==================================================== */
input[type="checkbox"]{
  display: none;/*Das unterdrückt das Häkchen!*/
}
input[type="checkbox"] + label {
  display: block;
  cursor: pointer;
  border: none;
}
input[type="checkbox"] + label:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(./aus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
input[type="checkbox"]:checked + label:before {
  background-image: url(./an.svg);
  background-size: contain;
}
/* ==================================================== SG ==================================================== */
h1{
    font-size:2em;
    color: cornflowerblue;
}
a{
    display:inline-block;
}
button {
    font-family: Arial, Helvetica, sans-serif;font-size: 1em;
    height: 1.5em;
    display:inline-block;
    border:1px;
    background-color: grey;
    color: white;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}
.SVGINTEXT{
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: bottom;
    cursor: pointer;
    display: inline-block;
    height: 1.5em;
    width: 1.5em;
    border:0px;
}

.DetailEbene0{
    font-size:1.3em;
    color: royalblue;
}

.flexContainer {
    display: flex;
}

.inputField {
    flex: 1;
}
summary{
    font-size:large
    font-weight: bold;
}
table{
    table-layout: auto;
    background-color:  #e5e8e8;
    border: 1px solid black;
    border-collapse: collapse;
    border-spacing: 10px 5px;
}
caption{
    caption-side: left;
}

th{
    text-align: left;
}
td{
    font-size: 0.8em;
    background-color:  #e5e8e8;
}
input{
    border: 2px solid black;
    border-collapse: collapse;
    width: 8em;
}
select{
    border: 2px solid black;
    background-color: white;
    border-collapse: collapse;
    width: 8.5em;
}


