/* Standard-Styling für die speziellen Links */
.special-link {
  color: white; /* Standardfarbe */

}

/* Besondere Zustände */
.special-link:visited {
  color: white;
  -webkit-text-fill-color: white; /* Webkit-spezifisch */
  -webkit-text-stroke-width: 0;
}

.special-link:active {
  color: white;
  -webkit-text-fill-color: white; /* Webkit-spezifisch */
  -webkit-text-stroke-width: 0;
}

/* Optionale Hover-Stile, falls gewünscht */
.special-link:hover {
  color: #f4f4f4; /* Ein leichter Kontrast bei Hover */
}
