/* Entfernt die Unterstreichung von allen Links auf der Seite */
a {
    text-decoration: none !important;
}

/* Stellt sicher, dass die Links im Button unverändert bleiben */
button a {
    text-decoration: none !important;
    color: inherit !important; /* Erbt die Farbe des Buttons */
}

/* Verhindert, dass sich die Schriftfarbe im Button bei Hover ändert */
button a:hover {
    color: inherit !important; /* Beibehaltung der Originalfarbe */
    text-decoration: none !important; /* Keine Unterstreichung */
}