/* Mobile Language Selector Styles */
.mobile-header-actions {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.mobile-language-selector {
    display: flex;
    align-items: center;
    margin-right: 15px;
    background-color: transparent; /* Transparenter Hintergrund */
    border-radius: 15px;
    padding: 3px 10px;
    box-shadow: none; /* Kein Schatten */
    position: relative;
    z-index: 2000; /* Extrem hoher z-index, um über allen Elementen zu liegen */
}

.mobile-language-selector a {
    color: #fa006c; /* Projektfarbe */
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 3px 5px;
    transition: color 0.2s;
}

.mobile-language-selector a.active {
    color: #fa006c; /* Projektfarbe für aktive Sprache */
    font-weight: 700;
    text-shadow: 0 0 5px rgba(250, 0, 108, 0.5); /* Leuchteffekt */
    filter: brightness(1.2); /* Etwas heller */
}

.mobile-language-selector .separator {
    color: rgba(250, 0, 108, 0.5); /* Projektfarbe mit mehr Transparenz */
    margin: 0 2px;
}

/* Alte Dropdown-Stile für die Navigation */
.language-switcher {
    display: none; /* Ausblenden des alten Sprachumschalters */
}

.flag-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.flag-de {
    background-image: url('../images/flags/de.svg');
}

.flag-en {
    background-image: url('../images/flags/gb.svg');
}
