.table__container {
    align-items: center;
    display: flex;
    max-width: var(--content-width);
    justify-content: center;
    overflow-x: scroll;
    width: 100%;
}

.table__container .dash-table-container {
    flex: 1;
}

/* table */
.table__container .dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner table {
    background: var(--secondary-color);
}

/* table header */
.table__container .dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner tr th {
    background: var(--primary-color);
    color: var(--primary-font-color);
    font-family: var(--font-family);
    font-weight: bold;
}

/* table cell */
.table__container .dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner tr td {
    background: var(--secondary-color);
    color: var(--secondary-font-color);
    font-family: var(--mono-font-family);
}

.table__container .dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner tr th,
    .table__container .dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner tr td {
    font-size: 0.75rem; /* 12px */
    padding: 3px;
    text-align: center;
    white-space: normal;
}


/* tablet and up */
@media screen and (min-width: 769px) {
    .table__container .dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner tr th,
    .table__container .dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner tr td {
        font-size: 0.875rem; /* 14px */
        height: 3rem; /* 48px */
        padding: 5px;
    }
}
