/**
 * Language Switcher Styles
 */

.menu-item-language {
    margin-left: auto;
}

.menu-item-language .lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f0f7ff;
    border: 1px solid #2271b1;
    border-radius: 6px;
    color: #2271b1;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.menu-item-language .lang-switch:hover {
    background: #2271b1;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 113, 177, 0.3);
}

/* Mobile styles */
@media (max-width: 1023px) {
    .menu-item-language {
        margin: 20px 0;
        padding: 0 20px;
    }
    
    .menu-item-language .lang-switch {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .menu-item-language {
        margin-left: 20px;
    }
}
