#list {
    display: block;
    position: relative;
    height: calc(100vh - 52px);
}

table {
    display: grid;
    border-collapse: collapse;
    font-size: 1rem;
    font-family: sans-serif;
    color: var(--black);
    margin-top: 10px;
    width: 100%;
    height: calc(100vh - 135px);
    border: 1px solid var(--color90);
    border-radius: 7px;
}

thead {
    display: block;
    width: 100%;
    height: 42px;
    background-color: var(--color90);
}

thead tr {
    display: grid;
    position: relative;
    grid-template-columns: 50px 100%;
    text-align: left;
    background-color: var(--color97);
    border-bottom: 1px solid var(--color90);
}

tbody {
    display: grid;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: var(--white);
}

tbody tr {
    display: grid;
    grid-template-columns: 50px auto;
    text-align: left;
    line-height: 38px;
    border-bottom: 1px solid var(--color90);
}

tfoot {
    height: 42px;
}

tfoot tr {
    display: grid;
    grid-template-columns: 100% 100px;
    text-align: left;
    background-color: var(--color97);
    border-top: 1px solid var(--line);
}

th,
td,
tr {
    height: 42px;
    line-height: 42px;
    padding-left: 10px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.icn_tbl.select,
tr.selected {
    background-color: var(--color90);
   /* fill: var(--color90);
    color: var(--black);*/
}



/* Customize the table headers */
.clusterize-headers {
    background-color: #f2f2f2;
    font-weight: bold;
  }
  

  