.tableWrapper table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 0;
    background: #fff;
    border: 1px solid var(--bs-tertiary-color, #C14225);
    border-radius: 0.75rem;
    overflow: hidden;
}

.tableWrapper table p:last-child {
    margin-bottom: 0;
}

.tableWrapper th,
.tableWrapper td {
    padding: 1rem 1.25rem;
    vertical-align: middle;
    text-align: left;
    border-right: 1px solid rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}

.tableWrapper tr > *:last-child {
    border-right: 0;
}

.tableWrapper tbody tr:last-child > * {
    border-bottom: 0;
}

/* Top header band */
.tableWrapper thead tr:first-child th,
.tableWrapper table tr:first-child th {
    background-color: var(--bs-secondary-color, #1C4C36);
    color: #fff;
    font-weight: 700;
}

/* Secondary header rows (if present) */
.tableWrapper thead tr:not(:first-child) th {
    background-color: #fff;
    color: inherit;
    font-weight: 400;
}

/* Row headings/labels in first column */
.tableWrapper tbody td:first-child {
    white-space: nowrap;
}