/* --- Link- und Schriftgrößen-Anpassungen (Verfeinerung) --- */

/* 1. Allgemeine Links an das Club-Blau (#0e44c1) anpassen */
a {
    color: #0e44c1; /* Helleres Club-Blau für allgemeine Links */
    text-decoration: none;
    transition: color 0.2s;
    font-size: 14px; /* Sicherstellen der Schriftgröße 14px */
}

a:hover,
a:focus {
    color: #134d99; /* Dunkleres Blau beim Hover (Club-Sekundärfarbe) */
    text-decoration: underline;
}

/* 2. Overrides für CMS-Klassen (Link-Farbe und Größe vereinheitlichen) */
.link {
    color: #0e44c1 !important; /* Wichtig für blaue Links, z.B. "Gesamtrangliste anzeigen" */
    font-size: 14px;
    line-height: 1.4em;
}

.link:hover, .link:focus {
    color: #134d99 !important; /* Hover-Farbe erzwingen */
    text-decoration: underline !important;
}

/* 3. Link im Login-Feld "Als Benutzer registrieren" */
form#ftipp table tr td.text a.text {
    /* Die spezifische Struktur des Registrieren-Links */
    color: #0e44c1 !important; 
    text-decoration: none;
}
form#ftipp table tr td.text a.text:hover {
    color: #134d99 !important;
    text-decoration: underline;
}

