/* Language Selector Styles */
.language-selector {
    position: relative;
    margin-right: 16px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.lang-btn:active {
    transform: translateY(0);
}

.globe-icon {
    font-size: 16px;
    line-height: 1;
}

.lang-code {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    min-width: 20px;
    text-align: center;
}

/* Language switch animation */
@keyframes langSwitch {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.lang-btn.switching .lang-code {
    animation: langSwitch 0.3s ease;
}