body {
    color: #eee;
    background-color: #1e2128;
    font-family: 'Lucida Sans Unicode', 'Lucida Sans', Arial, sans-serif;
}

#category-selection {
    display: flex;
    flex-direction: row;

    width: 100%;
    height: 2lh;

    & > * {
        flex-basis: 0;
        flex-grow: 1;
    }
}

#content > * {
    display: none;
    & input[type="checkbox"] {
        pointer-events: none;
    }
}

table {
    width: 100%;
    text-align: center;
    table-layout: fixed;

    border-collapse: collapse;
    border-spacing: 0px;
}

th {
    background-color: #393e4a;
    position: sticky;
    top: 0;
}

td, th {
    border: .05rem solid #393e4a;
}

tr:hover {
    background-color: #15171c;
}

a {
    text-decoration: none;
    &:link, &:visited {
        color: #00ffff;
    }
}
