table.list{
    border-collapse: collapse;
    width: calc(100% - 10px);
    margin: 5px;
    text-align: left;
}

table.list tr td, table.list tr th{
    border-bottom: 1px solid var(--hawks-silver-050);

    padding: 10px 10px;
}
@media (prefers-color-scheme: dark) {
    table.list tr td, table.list tr th {
        border-bottom: 1px solid var(--hawks-silver-020);
    }
}
table.list tr:last-child td, table.list tr:last-child th{
    border-bottom: unset;
}
table.list tr th, .table_cell_th{
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    vertical-align: baseline;
}
table.list tr th a{
    color: #000000 !important;
    text-decoration: none;
}
@media (prefers-color-scheme: dark) {
    table.list tr th a{
        color: #ffffff !important;
        text-decoration: none;
    }
}
table.list tr th a:hover{
    text-decoration: underline;
}

table.list tr th .material-icons{
    display: inline-block;
    vertical-align: text-top;
    margin-top: -3px;
    height: 17px;
}

table .left, table .l, table .-l, table .l-, table .-l-{
    text-align: left;
    width: 1px;
    white-space: nowrap;
}
table .-l,table .-r, table .-x{
    border-left: 1px solid var(--hawks-silver-050);
}
@media (prefers-color-scheme: dark) {
    table .-l,table .-r, table .-x{
        border-left: 1px solid var(--hawks-silver-020);
    }
}

table .l-,table .r-, table .x-{
    border-right: 1px solid var(--hawks-silver-050);
}
@media (prefers-color-scheme: dark) {
    table .l-,table .r-, table .x-{
        border-right: 1px solid var(--hawks-silver-020);
    }
}

table .-l-,table .-r-, table .-x-{
    border-left: 1px solid var(--hawks-silver-050);
    border-right: 1px solid var(--hawks-silver-050);
}
@media (prefers-color-scheme: dark) {
    table .-l-,table .-r-, table .-x-{
        border-left: 1px solid var(--hawks-silver-020);
        border-right: 1px solid var(--hawks-silver-020);
    }
}

table .right, table .r, table .-r, table .r-, table .-r-{
    text-align: right;
    width: 1px;
    white-space: nowrap;
}
table .c{
    text-align: center;
    width: 1px;
    white-space: nowrap;
}

table .rf{
    text-align: right;
    white-space: nowrap;
}