.table .table-header,

.table .table-row {
    display: grid;
    grid-gap: 10px;
    border-bottom: var(--border);
    padding: 7px 15px;
}

.table .table-row:last-of-type {
    border: unset;
}



.table .table-header {
    color: white;
    font-weight: 800;

}

.table .table-row {
    /* color:white; */
    /* font-weight:800; */
    font-size: 15px;
    line-height: 15px;
    padding-top: 13px;
}

.table .table-header>div{
    padding: 6px 0;
}

.table .table-row>div {
    padding-top: 0px;
}
.table .table-row>div .btn{
    position:relative;
    top:-4px;
}
.table .table-row>div:last-of-type{
    padding:unset;
}