table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* Prevents columns from auto-expanding */
  font-family: sans-serif;
}

th, td {
  border: 1px solid #ccc;
  padding: 6px 12px;
  text-align: left;
  overflow: hidden;        /* Hide overflow content */
  text-overflow: ellipsis; /* Add '...' */
  white-space: nowrap;     /* Keep content on one line */
  max-width: 200px;        /* Optional: cap cell width */
}

th {
  background-color: #f5f5f5;
}

/* Optional: full content on hover */
td:hover {
  overflow: visible;
  white-space: normal;
  z-index: 1;
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}