/* Language switcher styles */
.language-switcher {
    margin-top: 15px;
    margin-left: 15px;
}

.language-switcher ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.language-switcher li {
    margin-right: 10px;
}

.language-switcher a {
    text-decoration: none;
    padding: 5px 8px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 14px;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid transparent;
    color: #333;
}

.language-switcher a:hover {
    opacity: 1;
    background-color: rgba(255,255,255,0.3);
    border: 1px solid rgba(0,0,0,0.1);
    text-decoration: none;
}

.language-switcher a.active {
    opacity: 1;
    background-color: rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.2);
    color: #333;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* For the navbar position */
.navbar-right .language-switcher {
    margin-top: 0;
    margin-left: 0;
}

.navbar-right .language-switcher ul {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .language-switcher {
        margin-top: 10px;
        margin-left: 10px;
    }
    
    .language-switcher ul {
        justify-content: center;
    }
    
    .language-switcher a {
        padding: 4px 7px;
        font-size: 12px;
    }
}