
.language-selector {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 20px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: 1px solid #e5e7eb;
    color: #333;
}

.lang-switch:hover {
    background: #f8f9fa;
}

.lang-switch.active {
    background: #1a73e8;
    color: white;
    border-color: #1a73e8;
}

.lang-switch img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.lang-switch span {
    font-size: 12px;
    font-weight: 600;
}

/* Responsive styles */
@media (max-width: 768px) {
    .language-selector {
        margin-top: 15px;
        margin-left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }
}