/* Language Switcher Styles */
.language-switcher {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.language-flag {
    width: 40px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.language-flag:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.language-flag.active {
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.language-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .language-switcher {
        bottom: 15px;
        left: 15px;
        gap: 8px;
    }
    
    .language-flag {
        width: 35px;
        height: 26px;
    }
} 