/* Estilos para el botón de cambio de idioma */
.language-switch {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.language-switch a {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.language-switch .flag-icon {
    margin-right: 5px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .language-switch {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .nav-menu .language-switch {
        margin-top: 15px;
        justify-content: center;
    }
}
