.language-switcher {
    position: relative;
    display: inline-block;
}

.language-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight:600;
    color: #333;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    min-width: 75px;
    justify-content: space-between;
}

.language-dropdown-btn:hover {
    border-color: #007bff;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.15);
}

.current-language {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-text {
    font-size: 11px;
    font-weight: 500;
}

.dropdown-arrow {
    font-size: 8px;
    transition: transform 0.2s ease;
    color: #666;
}

.language-switcher.open .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    z-index: 1000;
    margin-top: 2px;
}

.language-switcher.open .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 11px;
    color: #333;
    transition: background-color 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.lang-option:hover {
    background-color: #f8f9fa;
}

.lang-option.active {
    background-color: #007bff;
    color: white;
}

.flag-emoji {
    font-size: 12px;
    line-height: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .language-dropdown-btn {
        padding: 5px 8px;
        font-size: 10px;
        min-width: 65px;
    }
    
    .lang-text {
        font-size: 10px;
    }
    
    .lang-option {
        padding: 6px 8px;
        font-size: 10px;
    }
    
    .flag-emoji {
        font-size: 11px;
    }
    
    .dropdown-arrow {
        font-size: 7px;
    }
}