

.table tr:nth-child(odd){
	background: #cbdefa
}

.table tr:nth-child(even){
	background: #dae5f4
}

th {
  background-color: #337ab7;
  color: white;
}

.display_table{
	border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
	padding-left: 5px;
	padding-right: 5px;
	padding-bottom: 20px;
	box-shadow: 12px 12px 20px 6px #2e6da4;
}

.header {
  font-family: helvetica;
  color: #337ab7;
  font-size: 3rem; /* Anpassen der Schriftgröße für verschiedene Bildschirmgrößen */
  text-align: center;
  width: 100%;
  text-shadow: 2px 2px 2px #c9c6c6; /* Anpassen des Textschattens für verschiedene Bildschirmgrößen */
  display: block;
  font-weight: bolder;
}
.success{
  list-style: none;
  background-color: #2e6da4;
  color: white;
  box-shadow: 12px 12px 12px #e61c66;
  text-align: center;
}

.a {
  color: black; /* Farbe für nicht besuchte Links */
  text-decoration: none; /* Entfernt die unterstrichene Dekoration für Links */
}

a:hover {
  color: blue/* Farbe für Hover-Status, wenn der Mauszeiger darüber schwebt */;
}

a:visited {
  color: black/* Farbe für besuchte Links */;
}