#lote-detalle{
    max-height: 60vh;
    overflow-y: auto;
}

/* Select 2 */
.select2-selection{
    height: 42.94px !important;
}

/* Animación para saldo pendiente */
.saldo-pendiente-animacion {
    animation: saldoPendiente 2s infinite;
    position: relative;
    z-index: 1;
    padding: 20px;
}

@keyframes saldoPendiente {
    0% {
        background-color: #dc3545;
        color: white;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    50% {
        background-color: #ff6b7a;
        color: white;
        transform: scale(1.05);
        box-shadow: 0 0 10px 5px rgba(220, 53, 69, 0.4);
    }
    100% {
        background-color: #dc3545;
        color: white;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
}

.saldo-pendiente-animacion:hover {
    animation-play-state: paused;
    background-color: #c82333 !important;
    transform: scale(1.02);
}
