table.results ul {
    padding-inline-start: 0px;
    list-style: none;
    margin-block-end: 0;
}

table.results a {
    text-decoration: underline;
}

.anchor i {
    color: #bcc5cd;
    font-size: 1rem;
}
.anchor i:hover {
    color: #007bff;
    font-size: 1rem;
}

table.results {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}

table.results tr {
    display: grid;
}

table.results td {
    overflow-wrap: anywhere;
}

table.results thead th {
    border-top: none;
}

/* Format grid by number of columns */
.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-3 {
    grid-template-columns: 2fr 1fr 1fr;
}

.grid-5 {
    grid-template-columns: 2fr repeat(4, 1fr);
}

/* mobile responsive layout */
@media(max-width: 750px) {
    .container {
        max-width: 90% !important;
        padding: 0;
        margin: 0;
    }
}

@media(max-width: 600px) {
    html {
        font-size: 75%;
    }

    .container {
        max-width: 100% !important;
    }
}

@media(max-width: 450px) {
    html {
        font-size: 65%;
    }
}

@media(max-width: 350px) {
    html {
        font-size: 55%;
    }
}

table.results thead {
    position: sticky;
    top: 0;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
