/* Custom overrides for Bootstrap table styling */

/* 1. Reduce padding for all table cells */
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    padding: 4px;  /* Adjust this value as needed */
}

/* 2. Optionally reduce bottom margin on tables */

/* 3. Force a fixed table layout so that columns maintain a consistent width */

/* 4. Limit the width of table header and cell content, 
   and apply text overflow with ellipsis for long content */
/* .table th,
.table td {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
} 
*/
.table th {
    width: auto !important;
}
