.tablesorter-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-1);
    cursor: pointer;
}
.tablesorter-headerUnSorted .tablesorter-header-inner:after {
    content: "";
    background: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg' fill='currentColor'%3E%3Cpath d='m7 2 4 4H3l4-4Zm0 10 4-4H3l4 4Z'%3E%3C/path%3E%3C/svg%3E") no-repeat 0 0;
    height: 14px;
    width: 14px;
}
.tablesorter-headerAsc .tablesorter-header-inner:after {
    content: "▴";
}
.tablesorter-headerDesc .tablesorter-header-inner:after {
    content: "▾";
}
