.table {
    margin-bottom: 0 !important;
}
.table thead {
    font-size: var(--system-font-size-least);
    font-weight: var(--system-font-weight-semibold);
}
.table th {
    padding: .75rem .5rem;
}
.table td,
.table th {
    vertical-align: middle;
}
.table tr.is-gray {
    background-color: var(--system-color-gray-50) !important;
}
.table th:first-child,
.table td:first-child {
    padding-left: 1rem;
}
.table th:last-child,
.table td:last-child {
    padding-right: 1rem;
}
.table.is-fixed-header {
    position: relative;
}
.table.is-fixed-header thead {
    position: sticky;
    top: 0;
}
.table-wrapper.is-round-border {
    /* проверить зачем это, оно портит селекты и скролы если таблица будет обернута дивом с этими классами */
    overflow: hidden;
}