/* Language Selector Styles */
.language-selector {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.language-selector a {
    color: #003851;
    text-decoration: none;
    padding: 5px 8px;
    margin: 0 3px;
    border-radius: 3px;
    font-size: 0.85rem;
    transition: background-color 0.2s;
}

.language-selector a:hover {
    background-color: rgba(0, 56, 81, 0.1);
}

.language-selector a.active {
    background-color: rgba(0, 56, 81, 0.2);
    font-weight: bold;
}

/* Style for language selector in header (white text) */
.header .language-selector a {
    color: white;
}

.header .language-selector a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.header .language-selector a.active {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Responsive styles */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 0;
        margin-top: 10px;
        justify-content: center;
    }
}
