.session-language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(25, 118, 210, 0.12);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.12);
    backdrop-filter: blur(8px);
    z-index: 1200;
}

.session-language-switcher--floating {
    position: fixed;
    top: 16px;
    right: 16px;
}

.session-language-switcher--footer {
    position: static;
    margin: 0 auto 12px;
    box-shadow: none;
    border-color: rgba(91, 127, 168, 0.18);
}

.session-language-switcher--banner {
    position: static;
    min-height: 44px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    backdrop-filter: none;
}

.session-language-switcher--banner .session-language-switcher__label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
}

.session-language-switcher--banner .session-language-switcher__select {
    min-height: 32px;
    min-width: 145px;
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.96);
    color: #1f2a37;
    font-size: 0.86rem;
    padding: 6px 10px;
}

.session-language-switcher__label {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #35516b;
    white-space: nowrap;
}

.session-language-switcher__select {
    min-width: 150px;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(53, 81, 107, 0.18);
    background: #ffffff;
    color: #223548;
    font-size: 0.92rem;
    font-weight: 500;
}

.session-language-switcher__select:disabled {
    background: #f4f7fb;
    color: #70859b;
    cursor: wait;
}

@media (max-width: 768px) {
    .session-language-switcher--floating {
        top: 10px;
        right: 10px;
        left: 10px;
        justify-content: space-between;
    }

    .session-language-switcher--banner {
        width: 100%;
        justify-content: space-between;
    }

    .session-language-switcher__select {
        min-width: 0;
        flex: 1;
    }
}