body {
    width: 100%;
    padding: 0;
    margin: 0;
}

#header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 30px;
    padding: 20px 10px 20px 10px;
    background-color: #aabb99;
    color: white;
}

#logo {
    margin-top: -20px;
    float: left;
    height: 60px;
}

#nav {
    position: absolute;
    top: 12px;
    left: 135px;
    display: inline-block;
    border: none;
    animation: slide-in 1s ease-out;
}

ul.navig {
    position: relative;
    background: #aabb99;
    display: flex;
    flex: 1 1 auto;
    margin: 0;
    padding: 0 30px;
    list-style-type: none;
}
ul.navig li:not(:last-child) {
    margin-right: 10px;
}
ul.navig li {
    border: 2px solid transparent;
    border-radius: 5px;
    padding: 10px;
    background: #666;
    transition: background 0.5s;
    display: block;
    text-align: center;
    margin: 0;
    float: left;
    height: 22px;
    padding: 4px 10px 0 10px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}
ul.navig li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    display: block;
    width: 150px;
    margin-top: 5px;
    padding: 0;
    background: #f4b43e;
    border: 2px solid #f7c833;
    border-right: 2px solid #f89329;
    border-bottom: 2px solid #f89329;
    border-radius: 5px;
    transition:
        opacity 0.2s,
        visibility 0.2s;
}
ul.navig li ul li {
    width: 150px;
    height: 40px;
    float: none;
    padding: 0;
    margin-bottom: 1px;
}
ul.navig li ul li span {
    display: inline-block;
    vertical-align: middle;
    line-height: 40px;
}
ul.navig li:hover {
    background: #ec4138;
    border: 2px solid #f05749;
}
ul.navig li:hover ul {
    visibility: visible;
    opacity: 1;
}
ul#manage li,
ul#lists li.shortitem {
    height: 22px;
}

ul#manage li span,
ul#lists li.shortitem span {
    line-height: 22px;
}

h1.title {
    padding-top: 80px;
}
h2 {
    margin-top: -20px;
}

#layout-wrapper {
    padding-left: 10px;
    padding-bottom: 90px;
}

button.menubouton,
button.Addzi {
    margin: 20 px;
    background-color: darkgreen;
    color: white;
    font-size: 16px;
    font-weight: bold;
}
button.zilistbutton {
    display: inline-block;
    font-size: 20px;
    margin: 10px;
    font-weight: bold;
    color: rgb(23, 119, 23);
}

table,
tr,
td {
    border: 1px solid;
}

table {
    border-collapse: collapse;
    margin-left: 50px;
    margin-top: 20px;
}

td {
    padding-left: 4px;
    padding-right: 4px;
    text-align: center;
    font-size: 18px;
}

form.multi {
    /* https://www.digitalocean.com/community/tutorials/how-to-style-common-form-elements-with-css */
    margin-left: 10%;
    width: 40%;
    box-sizing: border-box;
    padding: 2rem;
    border-radius: 1rem;
    background-color: hsl(0, 0%, 90%);
    border: 4px solid hsl(0, 0%, 60%);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

button.formbut {
    margin-top: 20px;
    background-color: #a0522d;
    color: white;
    width: 100%;
    height: 30px;
    width: 70%;
    font-size: 16px;
    font-weight: bold;
    margin-left: 15%;
}

p#formhead {
    font-size: 16px;
    font-weight: bold;
    text-decoration-line: underline;
}

span#viewcar {
    font-size: 24px;
}

input:invalid {
    border: 2px dashed red;
}

input:valid {
    border: 1px solid black;
}

#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 70px;
    width: 100%;
    background: #888;
    color: white;
    padding: 10px 0 0 100px;
    font-size: 16px;
}

#footer a {
    color: white;
}

p.hanzi,
li.hanzi {
    font-size: 20px;
    margin: 0 20px 0 20px;
    max-width: 700px;
}

:is(tbody, table) > tr:nth-child(odd) {
    background: rgba(0, 0, 0, 0.0666666667); /* or #fff1 for dark themes */
}

ul.nobullets {
    list-style-type: none;
    margin: 5px;
}

/*# sourceMappingURL=style.css.map */
