* {
    color: black;
    font-family: Helvetica, sans-serif;
}

/* general properties for anything in the site-nav <nav> */
.site-nav {
    color: blue;
    font-size: large;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 40px;
}

/* this is for the <div> for the top-nav-bar-menu */
.site-nav > .top-nav-bar-menu {
    padding-top: 0px;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 0px;
}

/* this is for the list items (the bullets) <li> */
.site-nav > .top-nav-bar-menu > ul > li {
    color: pink;
    /* white-space and display keep the li's on the same line */
    white-space:nowrap;
    display:inline;
    /* margin is the spacing between li items */
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 10px;
    margin-bottom: 0px;
}

/* this is for the <a> */
.site-nav > .top-nav-bar-menu > ul > li > a {
    color: darkblue;
    /* text-decoration removes underline */
    text-decoration: none;
    font-size: .8rem;
}

.site-contents {
    padding-top: 0px;
    padding-left: 12%;
    padding-right: 12%;
    padding-bottom: 0px;
}

table {
    color: red;
    margin-left: 20px;
    border-width: 3px;

    /* below are unused, helpful examples */
    /* border-radius makes rounded corners */
    /*
    border-color: blueviolet;
    border-style: solid;
    border-radius: 5px;
    */
}

/*
table.top-level-table {
    padding-top: 0px;
    padding-left: 12%;
    padding-right: 12%;
    padding-bottom: 0px;
}
*/

tr {
}

th {
    text-align: left;
}

td {
    padding-left: 5px;
    padding-right: 5px;
}

*.error-formatting {
    color:red;
}

*.success-formatting {
    color:blue;
}

input {
    color: black;
    font-family: Helvetica, sans-serif;
}

input[type=submit] {
    color: darkblue;
    background-color: blue;
    border: none;
    color: white;
    padding: 10px 20px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

