/* Language Switcher Styles */
.language-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: auto;
}

.language-switcher button {
    padding: 0.375rem 0.75rem;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 500;
}

.language-switcher button:hover {
    border-color: #007bff;
    color: #007bff;
}

.language-switcher button.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

@media (max-width: 576px) {
    .language-switcher {
        margin-top: 1rem;
        margin-left: 0;
        justify-content: flex-start;
    }
}
