/* Container und Liste für die Sprungmarken zurücksetzen */
.skip-links-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Grundlegendes Styling für jeden Skip-Link */
.skip-link {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0093D0;
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.3s ease-in-out;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.skip-link > svg {
    width: 16px;
    height: 16px;
    margin-left: .5rem;
}

/* Das Einblenden beim Durchtabben */
.skip-link:focus {
    top: 0;
    outline: 3px solid #CDCD00;
    outline-offset: 2px;
}

/* Optional: Damit das Springen sanft abläuft */
html {
    scroll-behavior: smooth;
}
/* Optional: Damit das Springen zum Inhalt angenehmer aussieht */
html {
    scroll-behavior: smooth;
}