body {
    margin: 0;
    padding: 0;
}

.nav ul {
    grid-template-columns: repeat(5, 1fr);
}
.update {
    color: rgb(54, 77, 73);
    line-height: 3;
    font-size: .8rem;
    text-align: center;
}

.tables {
    margin: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family: Arial;
}


.tables h4 {
    font-family: 'Quando', serif;
    text-align: center;
    font-size: .9rem;
    color: rgb(54, 77, 73);
    margin: 0 0 5px 5px;
}

/* .recedingTable h4 {
    text-align: left;
    margin-left: 20%;
    font-size: .8rem;
    color: rgb(54, 77, 73);
} */

.light-table-filter {
    width: 90%;
    font-size: 1.2em;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 10px;
    margin: 5px;
    outline: #000;
}

input:not([type="radio"]):not([type="checkbox"]) {
    -webkit-appearance: none;
    border-radius: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
}



.tableWrap {
    background-color: rgba(161, 255, 240, 0.6);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    padding-top: 15px;
    margin: 5px;
    font-size: .8em;
    margin-bottom: 10px;
    overflow-y: auto;
    max-height: 250px;
}

/* 
th:nth-child(4) {
    display: none;
}

td:nth-child(4) {
    display: none;
} */

th {
    width: 200px;
    background-color: rgb(20, 176, 153);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    color: #fff;
}

tr {
    text-align: center;
}
tr:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}
td:nth-child(2) {
    text-align: left;
}


/* MEDIA QUERIES */
@media(min-width: 500px) {
    .tables {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media(min-width: 700px) {
    .light-table-filter {
        margin-left: 5%;
    }
.update {
        font-size: 1em;
    }

    #content {
        padding: 3%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "head head"
            "nav nav"
            "search ."
            "tables tables"
            "hlLink ."
            "foot foot"
    }

    .light-table-filter {
        grid-area: search;
    }

    .tables {
        grid-area: tables;
    }

    /* 

    th:nth-child(4) {
        display: block;
    }

    td:nth-child(4) {
        display: block;
    } */

    .header {
        grid-area: head;
    }

    .nav {
        grid-area: nav;
        padding-right: 5%;
    }

    .hareLineLink {
        grid-area: hlLink;
    }

    .footer {
        grid-area: foot;
    }
}