/* .suma.alta {
    background-color: rgb(47, 161, 255, 0.2);
}

.suma {
    background-color: rgb(173, 255, 47, 0.2);
}

.resta {
    background-color: rgb(255, 0, 0, 0.2);
} */

/* .debe {
    color:red;
}

.haber {
    color: limegreen;
} */

.vacuna .cantidad, .vacuna .signo {
    color: rgb(5, 146, 17);
}

.vacuna .acumulado {
   opacity: 0;
}


.resta .cantidad, .resta .signo {
    color: red;
}

.resta .acumulado::after {
    content: '\25BC';
    color: red;
    padding-left: 4px;
}


.suma .acumulado::after {
    content: '\25B2';
    padding-left: 4px;
    color: limegreen;
}

.suma.alta .acumulado::after {
    content: '\25A0';
    padding-left: 4px;
}

/* Filtros de tipo de lote */
.filter-lote {
    opacity: 0.4;
    transition: opacity 0.2s;
}

.filter-lote.active {
    opacity: 1;
    font-weight: bold;
}

/* Paginación en modo dark */
#pagination .page-link {
    background-color: #212529;
    border-color: #495057;
    color: #dee2e6;
}

#pagination .page-link:hover {
    background-color: #343a40;
    border-color: #6c757d;
    color: white;
}

#pagination .page-item.active .page-link {
    background-color: white;
    border-color: white;
    color: #212529;
    font-weight: bold;
}

#pagination .page-item.disabled .page-link {
    background-color: #212529;
    border-color: #495057;
    color: #6c757d;
}

#apuntes hr:last-child {
    display: none;
}

#apuntes .lote-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#apuntes .lote-title + .card {
    display: none;
}

#apuntes .lote-title.active+.card {
    display: block;
}

/* === Estilos para pantalla de Asientos === */

.section-toggle {
    position: relative;
    text-align: left;
    transition: all 0.3s ease;
}

.section-toggle:hover {
    transform: translateX(5px);
}

.section-toggle .icon-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.section-toggle .icon-arrow.rotate {
    transform: rotate(-90deg);
}

.viaje-toggle {
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 5px;
    border-radius: 4px;
}

.viaje-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.apunte-item {
    padding: 8px;
    margin-bottom: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.apunte-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.apunte-item.selected {
    background-color: rgba(0, 123, 255, 0.1);
    border-left: 3px solid #007bff;
}

.apunte-item.consolidado {
    opacity: 0.6;
    background-color: rgba(40, 167, 69, 0.1);
}

.distribucion-input {
    font-size: 0.9rem;
}

.cuadre-indicator {
    font-weight: bold;
    font-size: 1.1rem;
}

.asiento-card {
    border-left: 4px solid #dc3545;
}

.asiento-card.cuadrado {
    border-left-color: #28a745;
}


#pagination-viajes, #pagination-lotes, #pagination-asientos {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.section-content {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Apuntes de cuadre */
.apunte-cuadre-item {
    background-color: rgba(23, 162, 184, 0.05);
    border-left: 3px solid #17a2b8;
    padding: 8px;
    margin-bottom: 8px;
    border-radius: 4px;
}

.apunte-cuadre-item .badge {
    font-size: 0.75rem;
}

.apunte-cuadre-item .tipo-apunte-auto {
    font-size: 0.7rem;
    font-style: italic;
}

.apunte-cuadre-item .select-lote-cuadre {
    font-size: 0.85rem;
}

.apunte-cuadre-item .input-cantidad-cuadre {
    font-size: 0.85rem;
}

.apuntes-cuadre {
    min-height: 40px;
    padding: 8px;
    background-color: rgba(23, 162, 184, 0.02);
    border-radius: 4px;
}

.btn-add-cuadre {
    font-size: 0.9rem;
}


.apunte-item.consolidado:hover {
    background-color: rgba(40, 167, 69, 0.4);
}