/* --- layout --- */

#content {
    justify-content: center;
}

/* --- table --- */

table {
    border-spacing: 0;
    text-align: left;
    transition: width 0.5s;
    width: 75%;
}

th, td {
    padding: 12px;
}

th, tr:not(:last-child) td {
    border-bottom: 0.5px solid #cbcbcb;
}

tr:last-child td {
    padding-bottom: 96px;
}

th {
    background-color: #ffffff;
    font-size: 9pt;
    padding-top: 96px;
    position: sticky;
    top: 0;
    transition: padding-top 0.5s;
}

td {
    font-size: 9pt;
    font-weight: 300;
}

.year {
    color: #898989;
}

/* --- media queries --- */

@media only screen and (max-width: 499px) {
    table {
        width: 90%;
    }

    th {
        padding-top: 64px;
    }

    tr:last-child td {
        padding-bottom: 64px;
    }

    .sm-screen-hidden {
        display: none;
    }

    .tags {
        margin-top: 8px;
    }
}
