#cancel
{
    background: none;
    display: none;
    margin-left: 1rem;
}

#results-wrapper
{
    max-height: 80vh;
    overflow-x: scroll;
    position: relative;
}

#results-mask
{
    background: rgba(37, 37, 37, .75);
    display: none;
    height: 100%;
    inset: 0;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 10;
}

#results thead
{
    background: var(--content-background);
    position: sticky;
    top: 0;
}

#results th
{
    cursor: pointer;
    position: relative;
    user-select: none;
}

#results th,
#results td
{
    font-size: 1.2rem;
    max-width: 100ch;
    overflow: hidden;
    padding: .5rem 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#results th::after
{
    content: "";
    display: inline-block;
    font-size: 1rem;
    line-height: 1.4rem;
    margin-left: .75rem;
}

#results th:where(.asc)::after
{
    content: "▲";
}

#results th:where(.desc)::after
{
    content: "▼";
}

#results td
{
    color: var(--green);
}

#results tr:where(.error) td
{
    color: var(--red);
}

#results tr:where(.redirect) td
{
    color: var(--yellow);
}

#results td a
{
    border-bottom: none !important;
    color: inherit !important;
    padding-bottom: 0 !important;
}