@media (prefers-color-scheme: light) {
    body {
        background-color: white;
        color: black;
        font-family: 'Courier New', Courier, monospace;
        a:link, a:visited, a:hover, a:active {
            color: black;
            background-color: grey;
        }
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: black;
        color: white;
        font-family: 'Courier New', Courier, monospace;
        a:link, a:visited, a:hover, a:active {
            color: white;
            background-color: grey;
        }

        table.providerTable {

            border: 1px solid white;
            width: 100%;

        }

        td.tableHeader {

            padding-bottom: 10px;

        }

        td.sectionHeader {

            text-decoration: underline;
            border-top: 1px solid white;
            column-span: all;
        
        }

    }
}

.bodyContainer {

    margin: auto;
    width: 700px;

}

.td50 {

    width: 50%;

}

.titleLink {

    color: white;
    font-size: 1.2em;

}

.td100 {

    column-span: all;

}

td {

    padding: 2px;

}