/* Custom class for non-responsive table with nowrap and scrollbars */
.is-non-responsive {
  width: auto; /* Prevent table from shrinking to fit container */
  white-space: nowrap; /* Prevent text wrapping in cells */
}

.is-non-responsive th,
.is-non-responsive td {
  white-space: nowrap; /* Ensure no text wrapping in cells */
}

.table-container {
  overflow-x: auto; /* Enable horizontal scrolling */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on mobile */
  max-width: 100%; /* Prevent container from overflowing parent */
}