/* Language switcher styles */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.language-flag {
    width: 30px;
    height: 30px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.language-flag:hover {
    transform: scale(1.1);
    opacity: 1;
}

.language-flag.active {
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid #007bff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .language-selector {
        top: 10px;
        right: 10px;
    }
    
    .language-flag {
        width: 25px;
        height: 25px;
    }
}
