body {
	background-color: #81F6D9;
}
.container {
	display: flex;
	align-items: center; /* Vertikale Ausrichtung */
}
h1 {
	margin-right: 20px; /* Abstand zwischen h1 und dem Formular */
}

table {
	/*
	width:100%;
	*/
	text-align: left;	
	border-collapse: collapse;
}

td, th {
	text-align: center; /* left; */
	border: 1px solid grey;
	padding: 0px 8px 0px 8px;
}
	
tr:nth-child(even) {
  background-color: #0081FE; /* f2f2f2 Hellgrau für gerade Zeilen */
}
tr:nth-child(odd) {
  background-color: #2E9AFE; /* ffffff Weiß für ungerade Zeilen */
}
	
table {
	
}

/*
th:nth-child(2) {
    width: 100px; 
}

th:nth-child(3) {
    width: 100px; 
}

th:nth-child(4) {
    width: 100px; 
}
*/