/* Fuerza scroll horizontal real en Overviews */

.main .content {
  overflow-x: scroll !important;   /* scroll visible siempre */
  overflow-y: hidden !important;
}

/* Mantén la tabla “expandible” */
.main .content table {
  table-layout: auto !important;
  width: max-content !important;
}

/* La CLAVE: que cada columna no pueda encogerse demasiado */
.main .content th,
.main .content td {
  white-space: nowrap !important;
  min-width: 140px !important;     /* ajusta 120–200 según te guste */
}

/* Opcional: columnas muy pequeñas (checkbox / estado) que no ocupen tanto */
.main .content th:first-child,
.main .content td:first-child {
  min-width: 40px !important;
}
