/* Schriftart im gesamten Dokument */
body {
  background-color: #B9FEB9;
  color: black;
  font-family: Arial, sans-serif;
  float: left;
}

iframe {
  background-color: #FEF9C5;
  color: black;
  font-family: Arial, sans-serif;
  float: left;
}

/* Absätze, DIV-Container, Tabellen, Formulare in 12 Punkt */
p, div, table, li, form  {
font-size: 12pt; 
}

/* Hintergrundfarbe grau mit weißer Schrift */
h1 {
background-color: #03037F;
color: white;
border-radius : 40%;
} 

/* Überschrift 2 und 3 blau färben */
h2, h3 {
color: #000099; 
} 

/* fette Passagen rot einfärben */
b {
color: blue; 
} 

/* kursive Passagen blau färben */
i {
color:  #000099; 
} 

/* Link-Stile für Hover-Links  */
a:link {
color: #000098; 
} 

a:hover {
text-decoration : none; 
background-color: #D9E0E4;
color: blue;
border-radius : 40%;
<!--font-size: 13pt;-->
} 

a:active {
color: blue; 
} 

a:visited {
color: blue; 
}

table {
	border: 1px solid gray;
	padding: 1em;
	<!--width: 10em;
	float: left;-->
	margin: 1em;
  border-radius: 1em;
  position: relative;
  background-color: #F2FEC9;
}

input {
	border: 1px solid gray;
	padding: 1em;
	<!--width: 10em;-->
	float: left;
	margin: 1em;
  border-radius: 1em;
}

.eingang {
	border: 0px solid red;
	padding: 0em;
	<!--width: 10em;-->
	float: left;
	margin: 0em;
  border-radius: 0em;
}

a.no-style {
  text-decoration: none;
  color: black; /* oder eine andere gewünschte Farbe */
  pointer-events: auto; /* optional, falls du Hover komplett deaktivieren willst */
}



a.no-hover {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
  border-radius: 0;
}

a.no-hover:hover {
  text-decoration: none !important;
  background-color: transparent !important;
  color: inherit !important;
  border-radius: 0 !important;
  cursor: default;
}