/* Language Switcher Styles */
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

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

.language-switcher a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-switcher a.active {
    font-weight: bold;
    color: #ff69b4;
    pointer-events: none;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 10px;
        justify-content: center;
        width: 100%;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links li {
        width: 100%;
        text-align: left;
    }
}
