/* fixed-table.css */

/* Wrap table to enable horizontal scroll */
.table-fixed-header {
  overflow-x: auto;
}

/* Table takes full width */
.table-fixed-header table {
  width: 100%;
  border-collapse: collapse;
}

/* Sticky header style */
.table-fixed-header thead th {
  position: sticky;
  top: 0;
  background: #f8f9fa; /* light background for header */
  z-index: 2;
}
