/* Tabelle mit Klasse 'linktable' */
.linktable {
  width: 80%;
  margin: 2rem auto;
  border-collapse: collapse;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Kopfzeile */
.linktable thead {
  background-color: #5c8fa1; /* Etwas dunkler als #77A7B9 */
  color: #ffffff;
}

.linktable th,
.linktable td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

.linktable th,
.linktable td a{
  text-decoration: none;
  color: #202020;
  font-style: italic;
}

/* Zebra-Streifen: zwei verschiedene Hintergründe für die Zeilen */
.linktable tbody tr:nth-child(odd) {
  background-color: #daecf0; /* Hellere Nuance */
}

.linktable tbody tr:nth-child(even) {
  background-color: #f3fafc; /* Noch hellere Nuance */
}

/* Optional: Hover-Effekt auf Tabellenzeilen */
.linktable tbody tr:hover {
  background-color: #c9e3ea;
}
