/* container */
.simple-table-container {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* table */
.simple-table {
    border-collapse: collapse;
    table-layout: auto;
    width: auto;
    margin: 0;
}

/* cells */
.simple-table th,
.simple-table td {
    padding: 12px;
    border: 1px solid var(--st-border);
    white-space: nowrap;
}

.simple-table td {
    white-space: normal;
}

/* header */
.simple-table thead tr {
    background: var(--st-header-bg);
    color: var(--st-header-text);
    font-weight: 600;
}

/* rows */
.simple-table tbody tr {
    background: var(--st-row-bg);
    color: var(--st-row-text);
}

/* zebra in light mode */
html:not(.dark) .simple-table tbody tr:nth-child(even),
body:not(.dark) .simple-table tbody tr:nth-child(even) {
    filter: brightness(0.995);
}

/* remove top outer borders */
.simple-table thead tr th:first-child {
    border-top-left-radius: 6px;
}
.simple-table thead tr th:last-child {
    border-top-right-radius: 6px;
}

/* bottom corners (if desired) */
.simple-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 6px;
}
.simple-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 6px;
}

/* fix clipped borders */
.simple-table th,
.simple-table td {
    border: 1px solid var(--st-border);
}

.simple-table {
    border-collapse: separate;
    border-spacing: 0;
}

