


/* public/css/render-html-table-cust.css (MODIFIED) */

/* Target only th and td elements inside tables with the entity-data-table class */
.entity-data-table th,
.entity-data-table td {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Rename .resizer to .entity-resizer and scope it if necessary (though its use is unique) */
.entity-resizer {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 4px;
  cursor: col-resize;
  user-select: none;
}

/* Target only tables with the resizing class */
table.entity-data-table.resizing {
  user-select: none;
}

/* Target only tables with the entity-data-table class */
.entity-data-table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
