/* Schriftart im gesamten Dokument */
body {
  background-color: #B9FEB9;
  background: linear-gradient(to right, #e0f7fa, #80deea);
  color: black;
  font-family: Arial, sans-serif;
  float: left;
  background-image: url('/dir/favicon_ganz.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;  
  opacity: 0.8;
}

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: 0em;
  border-radius: 1em;
  position: relative;
  background-color: #F2FEC9;
  background: linear-gradient(to right, #FEFED0, #FEDED0);

}

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;
}

details {


<!--background: linear-gradient(rgba(255, 204, 128, 0.8), rgba(255, 235, 59, 0.8));-->
}

.pergament-text {
  background: linear-gradient(#fdf6e3, #f5e9c7);
  border: 1px solid #d4c69a;
  padding: 20px;
  color: #3a2f1c;
  font-family: "Georgia", serif;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.1),
              2px 2px 6px rgba(0,0,0,0.2);
}

a.no-style {
  text-decoration: none;
  color: black; /* oder eine andere gewünschte Farbe */
  pointer-events: auto; /* optional, falls du Hover komplett deaktivieren willst */
  background-color: transparent;
  cursor: auto; /* kein Zeigefinger */
  border: none;
}



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;
}