/* Globales Link-Styling für alle Seiten (außer Untermenü) */
a:not(.sub-menu a) {
  color: #e3b448; /* Gleiche Farbe wie im Hauptmenü */
  text-decoration: none;
  display: inline; /* Standardverhalten für Links */
}

a:not(.sub-menu a):hover,
a:not(.sub-menu a):focus {
  color: #3a6b35; /* Hover-Farbe wie im Hauptmenü */
  outline: none;
}

a:not(.sub-menu a).active {
  font-weight: bold;
  background: rgba(255, 255, 255, 0.1); /* Hervorhebung wie im Hauptmenü */
}

/* Standard-Textstil für den Fließtext in den Seiten */
body,
.main-content p {
  color: #333333; /* Dunkles Grau für gute Lesbarkeit */
  font-size: 22px; /* Angenehme Schriftgröße */
  line-height: 1.6; /* Zeilenabstand für bessere Lesbarkeit */
  margin-left: 20px; /* Leichte Einrückung */
  margin-right: 20px; /* Ausrichtung für bessere Optik */
}

/* Optional: Überschriften-Stil anpassen, falls gewünscht */
h1,
.main-content h1,{
  color: #3a6b35; /* Farbe wie im Hover-Zustand der Links */
  margin-left: 20px; /* Gleiche Einrückung wie Fließtext */
}
h2,
.main-content h2,{
  color: #3a6b35; /* Farbe wie im Hover-Zustand der Links */
  margin-left: 20px; /* Gleiche Einrückung wie Fließtext */
}
h2,
.main-content h3 {
  color: #3a6b35; /* Farbe wie im Hover-Zustand der Links */
  margin-left: 20px; /* Gleiche Einrückung wie Fließtext */
}


/* -----Generelle Styles für die Tabelle----- */

.radio-table {
  border: 2px solid #808000;
  width: 100%;
  border-collapse: collapse;
}

/* Styles für alle Tabellenzellen */
.radio-table th,
.radio-table td {
  background-color: #000000;
  color: white;
  border: 1px solid #808000;
  padding: 8px;
  text-align: center;
}


/* --- Links in der Tabelle --- */
.radio-table a {
  color: inherit;
  text-decoration: none;
}
.radio-table a:hover {
  text-decoration: underline;
  color: #FFD700;
}




/* Style für die Kopfzeile */
.radio-table th {
  background-color: black;
  color: white;
  height: 36px;
}

/* Style für die Sender-Spalte */
.radio-table td:first-child {
  width: 19%;
}


