/* Estilos para el sistema de internacionalización */

/* Selector de idioma */
.nav-item.dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item.dropdown .dropdown-toggle::after {
    margin-left: 5px;
}

.dropdown-menu {
    min-width: 150px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item img {
    margin-right: 8px;
}

.lang-link.active {
    background-color: #007bff;
    color: #2C5F6B;
}

.lang-link.active:hover {
    background-color: #0056b3;
}

/* Transiciones suaves para cambios de idioma */
[data-i18n] {
    transition: opacity 0.3s ease;
}

/* Estilos para elementos traducidos */
.text-justify {
    text-align: justify !important;
}

/* Mejoras para el dropdown en móviles */
@media (max-width: 768px) {
    .nav-item.dropdown .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }
    
    .dropdown-item {
        padding: 10px 15px;
        border-bottom: 1px solid #eee;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
}
