
/* PowerGrid CSV – wrap only the Source-Plan column (3rd visible column) */
/* Force table to calculate widths without letting one long word stretch it */
.csv_table {
  table-layout: fixed;
  width: 100%;
}

.csv_table tr > th:nth-child(3),
.csv_table tr > td:nth-child(3) {
  white-space: normal !important;  /* allow wrapping */
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
  /* optional: keep the cell from getting wider than 240 px on big screens */
  max-width: 240px;
}
