/* background image behind body
html {
    background-image: url(../images/kitchenbg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100%;
    width: 100%;
} */

body {
    font-family:Arial, Helvetica, sans-serif;
    width: 850px;
    margin: 1em auto;
    background-color: white;
    border: 1px solid black;
    border-radius: 1px;
    box-shadow: 10px 10px 40px 10px;
}

fieldset {
    background-color: #FFFFF0;
}

h1 {
    font-size: 200%;
    color: rgb(104, 7, 0);
}

/* header styling */
header {
    background-image: linear-gradient(45deg, white 0%, orange 75%, black 100%);
    border-bottom: solid black;
    margin-top: 0;
    margin-bottom: 0 auto;
    padding: 0;
}

header img {
    float:left;
    padding: 1em;
}

header h1 {
    margin-top: 0;
    padding: 1em;
    padding-bottom: .5em;
    text-indent: 2px;
    text-align: left;
}

/* the styles for the two tier horizontal navigation menu */
.top_2_tier_menu { 
    position: relative;
    z-index: 10; 
}
.top_2_tier_menu a:link { color: white; background-color: black;}
.top_2_tier_menu a:hover, a:focus { background-color: gray;}
.top_2_tier_menu a.current { color: orange; }
.top_2_tier_menu ul {
    list-style-type: none;
    position: relative;
    padding: 0;
    margin: 0;
}
.top_2_tier_menu ul li {
    float: left;
}
.top_2_tier_menu ul ul {
    display: none;
    position: absolute;
    top: 100%;
}
.top_2_tier_menu ul ul li {
    float: none;
}
.top_2_tier_menu ul li a {
    text-align: center;
    display: block;
    width: 168px;
    padding: 1em 0;
    text-decoration: none;
    background-color: black;
    color: white;
    font-weight: bold;
    border-right: 2px solid black;
}
.top_2_tier_menu ul li:hover > ul {                         /* select ul child of li element, that's what the > is for */
    display: block;
}
.top_2_tier_menu > ul::after {                              
    content: "";
    display: block;
    clear: both;
}

/* the styles for the main */
main {
    margin: 0 auto;
    width: 690px;
}
main h1 {
    text-align: center;
}
main h2,
main h3 {
    margin-bottom: 10px;
}
main a {
    font-weight: bold;
}

/* the styles for the footer */
footer p {
    clear: both;
    margin-bottom: 0;
    padding: 1em 0 1em 0;
    border-top: solid black;
    font-size: 85%;
    text-align: center;
    background-image: linear-gradient(45deg, black 0%, orange 75%, white 100%);
}

/* format table */
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    border: 1px solid #999;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #FFFFF0;
}

thead {
    background-color: azure;
}

/* the styles for input form */
fieldset {
    margin: auto;
}

input[type="text"], input[type="date"], select {
    display: block;
    margin-bottom: 7px;
    width: 350px;
    text-align: center;
}

input[type="submit"] {
    margin-left: 10px;
    margin-top: 10px;
    font-size: 20px;
    border-radius: 5%;
    background-color:#fffff0;
}

input[type="submit"]:hover, .reporthome button:hover {
    background-color:black;
    color:#fffff0;
}

.reporthome input[type="submit"], .reporthome button, .reporthome a, a.reporthome{
    display:inline;
    font-size: 20px;
    border-radius: 5%;
    background-color: aliceblue;
    text-decoration:none;
    margin-bottom: 10px;
}
.reporthome input[type="submit"]:hover{
    background-color: black;
    color: aliceblue;
}

.topbutton {
    display: inline;
    font-size: 20px;
    border-radius: 5%;
    background-color: aliceblue;
    text-decoration: none;
    margin: 20px 0;
    padding: 5px;
}

form {
    display:inline;
}

.reportimage {
    float: right;
    padding-right: 30px;
}

/* style for tiktok embed */
.tiktok-embed { 
    position: relative;
    z-index: -1; }