table {
    width: 100%;
    background-color: var(--white-bg-color);
    border-radius: 1rem;
}

table table thead {
    border-radius: 1rem 1rem 0 0;
}

#table table thead th,
#table table tbody td,
#table table tfoot td {
    font-size: 1rem;
    color: var(--grey-scrollbar-hover-color);
    padding: .45rem 1.25rem;
    border-bottom: solid 1px var(--grey-bg-color);
}

#table table thead th,
#table table tfoot td {
    padding: 1.5rem 1.25rem 1rem;
    text-align: left;
    font-weight: 500;
}

#table table tbody td a {
    color: var(--blue-link-active-color);
    text-decoration: underline;
}

#table table thead #table-cell {
    display: flex;
    gap: .75rem;
    align-items: center;
    font-weight: 600;
}

#table table thead #table-cell .sort-content {
    display: flex;
    flex-direction: column;
}

#table table thead #table-cell .sort-content span {
    font-size: 1rem;
    color: var(--grey-scrollbar-hover-color);
    line-height: .75rem;
}

#table table tfoot td {
    padding: 1rem;
}

#table table thead th.highlight,
#table table tbody td.highlight,
#table table tfoot td.highlight {
    background-color: var(--green-bg-color);
    color: var(--blue-brand-color);
}