/* Simple Language Switcher Styles - Clean and minimal design */

.lang-switcher {
    position: relative;
}

.lang-button {
    background: white;
    border: 2px solid var(--accent-blue, #4A90E2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-button:hover {
    background: var(--accent-blue, #4A90E2);
    transform: scale(1.05);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1100;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--text-primary, #0F172A);
    text-decoration: none;
    transition: background 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
}

.lang-dropdown a:hover {
    background: var(--gray-light, #f3f4f6);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .lang-button {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .lang-selector,
    .lang-switcher {
        margin-right: 0;
    }
}