.fila-secundaria {
    transition: all 0.35s ease;
    overflow: hidden;
    transform-origin: top;
    opacity: 1;
    max-height: 100px; /* Altura aproximada de la fila */
}

.fila-secundaria.collapsed {
    height: 0;
    padding: 0;
    border: none;
    opacity: 0;
    max-height: 0;
    transform: scaleY(0);
}

.badge[data-has-secundarios='true'] {
    transition: transform 0.35s ease;
    cursor: pointer;
}

.badge[data-has-secundarios='true'].active {
    transform: rotate(180deg);
}

.inversion-row {
    transition: all 0.35s ease;
    overflow: hidden;
}

.inversion-content {
    transition: all 0.35s ease;
    transform-origin: top;
}

.inversion-content.collapsed {
    transform: scaleY(0);
    height: 0;
    padding: 0;
    margin: 0;
}

.inversion-arrow {
    transition: transform 0.35s ease;
}

tr[data-parent] {
    transition: all 0.35s ease;
}

.badge.active {
    background-color: #0056b3 !important;
}


