/* styles.css */
.specific-content {
    color: magenta;
}

h1.specific-content {
    color: magenta;
}

.missing-link {
    color: red;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.md-typeset table {
    width: 100%;
    table-layout: fixed;
}

.table-header-byte {
    background-color: #6C6D70;
    color: #FFFFFF;
    text-align: center;
}

.table-mid-byte {
    background-color: #E6E7E9;

}

.table-bottom-byte {
    background-color: #FFFFFF;
    color: #000;
    text-align: center;
}

.table-outer {
    overflow-x: auto;
    height: calc(100vh - 100px);
    /* full height minus header and footer */
}

thead {
    position: sticky;
    z-index: 2;
    top: 0;
}

.light-grey {
    background-color: #DCDDDF;
    /*color: #FFFFFF;*/
    text-align: center;
}

.mid-grey {
    background-color: #BCBDC0;
    /*color: #FFFFFF;*/
    text-align: center;
}

.dark-grey {
    background-color: #9D9FA2;
    /* color: #FFFFFF;*/
    text-align: center;
}