.simple-lang-switch {
    /*padding: 10px;*/
    display: block;
    text-align: right;
    margin-top: -10px;
}

.simple-lang-switch a {
    /*color: var(--global-palette1);*/
    font-size: 14px;
    text-decoration: none !Important;
}


/* --- Ghost Button Stil --- */

/* 1. Der Grundzustand */
.wp-block-button__link.einfacher-ghost-button {
    background-color: transparent !important; /* Erzwingt Transparenz */
    border: 2px solid var(--global-palette1); /* Deine Markenfarbe als Rahmen */
    color: var(--global-palette1) !important; /* Textfarbe passend zum Rahmen */
    transition: all 0.3s ease; /* Weicher Übergang beim Hover */
    display: inline-flex;
}

/* 2. Der Hover-Zustand (Maus drüber) */
.wp-block-button__link.einfacher-ghost-button:hover {
    background-color: var(--global-palette1) !important; /* Hintergrund wird farbig */
    color: #ffffff !important; /* Text wird weiß für Kontrast */
    border-color: var(--global-palette1); /* Rahmenfarbe bleibt */
}

.einfacher-svg {
    font-size: 21px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Optional: Fokus-Zustand für Tastatur-Nutzer (Barrierefreiheit!) */
/*.wp-block-button__link.einfacher-ghost-button:focus {*/
/*    outline: 3px dotted var(--global-palette1);*/
/*    outline-offset: 2px;*/
/*}*/