.table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: .95rem;
}

.table thead th {
    background: var(--elev-2);
    color: #fff;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
}

.table th,
.table td {
    text-align: center;
    padding: 12px 14px;
    vertical-align: center;
    border-top: 1px solid var(--border);
}

.table code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
    font-size: .95rem;
    background: #16181f;
    color: #e5e7eb;
    padding: 0 .35em;
    border: 1px solid #2d3343;
    border-radius: 3px;
}

.table pre {
    background: var(--code-bg);
    color: #e5e7eb;
    padding: 14px;
    border-radius: 8px;
    overflow: auto;
    border: 1px solid var(--code-stroke);
}

.table tfoot {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border);
}