/* Defining main site colors */
:root {
    /* Main colors */

    --bg-color: white;
    --header-bar-color: #F76902;
    --header-bar-link-color: white;
    --header-bar-link-hover-color: black;
    --card-color: #EFECEA;
    --a11y-orange: #C75300;

    /* Table colors */

    --table-row-odd-color: #EFECEA;
    --table-row-even-color: #D3D2D2;
    --private-table-row-color: #3F3F3F;
    --private-table-font-color: white;

    /* Link colors */

    --link-color: #8D4513;
    --link-visited-color: var(--link-color);
    --link-hover-color: black;
}

@media screen {
    * {
        margin: 0;
        padding: 0;
    }

    html {
        overflow-y: scroll;
    }

    body {
        background-color: white;
        background-color: var(--bg-color);
        font-family: verdana, helvetica, sans-serif;
        font-size: 14px;
        line-height: 1.8em;
    }

    a {
        color: #8D4513;
        color: var(--link-color);
        font-weight: normal;
        -webkit-text-decoration: none;
        text-decoration: none;
    }

        a:visited {
            color: #8D4513;
            color: var(--link-visited-color);
        }

        a:hover {
            color: black;
            color: var(--link-hover-color);
            cursor: pointer;
            -webkit-text-decoration: underline;
            text-decoration: underline;
            transition: all .2s ease-in;
        }

    h1 {
        font-size: 1.7em;
        font-weight: bold;
    }

    h2 {
        font-size: 1.35em;
        font-weight: bold;
        margin-bottom: 9px;
    }


    h3 {
        font-size: 1.3em;
        font-weight: bold;
        margin-bottom: 9px;
    }

    h4 {
        display: inline-block;
        font-size: 1.1em;
        margin-bottom: 0;
        max-width: 75%;
        width: auto;
    }

    p {
        margin-top: 0;
    }

    ul li {
        font-size: 14px;
        list-style: none;
    }

        ul li:empty {
            display: none;
        }
        th:first-child {
            border-radius: 5px 0 0;
        }

        th:last-child {
            border-radius: 0 5px 0 0;
        }

        th:only-child {
            border-radius: 5px 5px 0 0;
        }

    table {
        border-collapse: separate;
        border-collapse: initial;
    }
}
