/* Scroll general para tablas de reportes */
.reporte-scroll {
    max-height: 480px; /* Limita la altura para activar scroll vertical */
    overflow-y: auto;
    overflow-x: auto; /* Permite scroll horizontal si la tabla es muy ancha */
    margin-bottom: 1rem;
}

/* Ajuste horizontal para tablas largas */
.table-responsive {
    overflow-x: auto;
}

/* Asegura que la tabla ocupe el ancho necesario */
.reporte-scroll table {
    width: max-content;
    min-width: 100%;
}
/* Forzar estilo claro universal para todas las tablas */
.table thead th {
    background-color: #fff !important;
    color: #000 !important;
}


.table td, .table th {
    background-color: #fff !important;
    color: #000000 !important;
}
