.table {
    border-radius: 8px;
    overflow: hidden;
}

.table thead th {
    background-color: var(--bs-secondary-color);
    color: var(--bs-secondary-sub-color);
}

.table tbody td {
    text-align: center;
    vertical-align: middle;
}

.table-scrollbar {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: auto;
    width: 100%;
}


