.table-wrapper {
    width:100%;
    border: 1px solid var(--gears-outline-color);
    overflow-x: auto;
    background-color: inherit;
    color:inherit;
    position: relative;
}
table {
    display: table;
    width: 100%;
    height:100%;
    border-collapse: collapse;
    border-spacing: 0;
    background-color: inherit;
    color:inherit;
}
tr { background-color: inherit; }
thead:first-child tr:first-child th, tbody:first-child tr:first-child td {
    border-top: 0;
}
td, th {
    padding: 16px 24px;
    border-top: 1px solid var(--gears-outline-color);
    border-right: 1px solid var(--gears-outline-color);
    vertical-align: middle;
}
thead th {
    background: var(--gears-primarycontainer-color);
    color: var(--gears-onprimarycontainer-color);
    font-weight: 500;
}
tr :last-child {border-right: 0;}