body {
    background-color: white;
    font-family: "PT Sans";
    padding: 8px;
    margin: 0;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 4px;
}

.container-xl {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 4px;
}

.nav {
    margin-top: 4px;
    padding: 8px;
    display: flex;
}

.nav img {
    width: 128px;
}

.nav .links {
    margin-left: auto;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav a {
    color: #444444;
    text-shadow: #e8e8e8 1px 1px;
    text-decoration: none;
}

.nav a:hover {
    color: #808080;
    text-shadow: #e8e8e8 1px 1px;
    text-decoration: none;
}

a:hover {
    border-bottom: 1px dotted #d8d8d8;
}




#drop-zone {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    height: 240px;
    padding: 1em;
    border: 1px solid #cccccc;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    color: slategray;
    cursor: pointer;
}

#file-input {
  display: none;
}

.upload-btn {
    background-color: #478fc6;
    width: 100%;
    text-align: center;
    border: solid 1px #296ea1;
    margin: 0;
    padding: 8px;
    color: white;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.upload-btn:hover {
    background-color: #296897;
    border: solid 1px #0e3a5a;
    cursor: pointer
}

.footer {
    font-size: 12px;
    margin-top: 8px;
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid #d6d6d6;
}

a {
    color: grey;
    text-shadow: #e8e8e8 1px 1px;
    text-decoration: none;
}

.footer i {
    font-size: 16px;
}

.styleform {
    max-width: 300px;
    margin: 0 auto;
}

.styleform div {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 6px;
    grid-row-gap: 0px;
    padding-bottom: 4px;
    align-items: center;
    font-weight: 500;
}

.styleform label {
    text-align: right;
    grid-area: 1 / 1 / 2 / 3;
}

.styleform input {
    grid-area: 1 / 3 / 2 / 6;
    padding: 4px;
    border: 2px solid #e4e4e4;
    border-radius: 4px;
    background-color: #f8f8f8;
}

input:focus {
    border: 2px solid #f4f4f4;
    background-color: #fff;

}



.login-btn {
    display: inline-block;
    vertical-align: middle;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: #478fc6 !important;
    border: solid 2px #296ea1 !important;
    color: white;
    font-size: medium !important;
    text-decoration: none;
    cursor: pointer;
    line-height: normal;
}

.login-btn:hover {
    background-color: #296897 !important;
    border: solid 2px #0e3a5a !important;
    cursor: pointer
}

div .styleform .errorlist {
    display: none;
}

div .styleform .helptext {
    display: none;
}

.error {
    background-color: #c64747 !important;
    border: solid 2px #a12929 !important;
    padding: 4px;
    color: white;
    margin-bottom: 4px;
    border-radius: 4px;
}

.subtitle {
    border-bottom: 1px solid #d6d6d6;
    margin-bottom: 6px;
    padding-bottom: 2px;
}

.plus {
    background: none;
    border: none;
    font-size: large;
    color: rgb(59, 158, 17);
}

.plus:hover {
    cursor: pointer;
}

section {
    margin-bottom: 8px;
}

strong {
    font-weight: 700;
}

p {
    margin-bottom: 6px;
}

ul {
    display: block;
    list-style-type: disc;
    margin-bottom: 1 em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px;
}