.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: white;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    gap: 10px;
    align-items: center;
}

.language-switcher a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.language-switcher a.active {
    background: #2ecc71;
    color: white;
}

.language-switcher a:hover:not(.active) {
    background: #eafaf1;
}

.language-switcher .separator {
    color: #ddd;
    font-weight: 300;
} 