/* Language Switcher Styles */
.language-switcher {
    position: fixed;
    top: 16px;
    right: 70px;
    z-index: 1050;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.language-switcher a {
    display: block;
    width: 32px;
    height: 24px;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.language-switcher a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.language-switcher a.active {
    box-shadow: 0 0 0 2px #007bff;
}

.language-switcher img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .language-switcher {
        top: 15px;
        right: 15px;
        padding: 8px;
        gap: 8px;
    }
    
    .language-switcher a {
        width: 28px;
        height: 21px;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        top: 24px;
        right: 70px;
        padding: 6px;
        gap: 6px;
    }
    
    .language-switcher a {
        width: 24px;
        height: 18px;
    }
}

