/* Language Switcher Styles */
.banner .language-switcher {
    position: absolute;
    top: 1rem;
    left: 50%;
    z-index: 10;
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0 !important;
    margin: 0;
    font-size: 0.75rem;
}

.language-item {
    margin: 0 0.25rem;
    padding-left: 0 !important;
}

.language-item a {
    text-decoration: none;
    padding: 0.15rem 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.language-item a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.9);
    color: #fff;
}

@media (orientation: portrait) {
    .banner .language-switcher {
        left: 1rem;
        top: auto;
        bottom: 1rem;
    }
}
