/* tables.css */
.fit {
    white-space: nowrap;
}
.table thead th {
    background-color: #007bff;
    color: white;
    text-align: center;
    white-space: nowrap;
    border: 1px solid white !important;
}
.table tbody td {
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    border: 1px solid grey !important;
}
.table tbody tr:hover {
    background-color: #d1ecf1 !important;
}
.btn-sm {
    font-size: 0.875rem;
}
.modal-header {
    background-color: #007bff;
}
.container {
    margin: 20px auto;
}
/* Ensure grey borders */
.table, .table th, .table td {
    border: 1px solid grey !important;
}
/* Table container for horizontal scrolling */
.table-container {
    overflow-x: auto;
    margin: 20px 0;
}
.table {
    width: 100%;
    max-width: 100%;
}
