/* custom-tables.css */
.truncate-text {
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  cursor: help;
}

.truncate-text-lg {
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  cursor: help;
}

/* Ensure the actions column stays compact and consistently positioned */
.theme-table th:last-child, 
.theme-table td:last-child {
  white-space: nowrap;
  width: 1%;
  text-align: center;
}

/* Table layout adjustment */
.theme-table {
  table-layout: auto;
  width: 100% !important;
}

/* Optional: improve table responsiveness */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
