:root {
    --charcoal: #353434;
    --parchment: #F7F8F6;
    --concrete: #B6B7B8;

    --energy: #D4D400;
    --sienna: #BD5942;
    --indigo: #595E85;

    --forest-green: #405742;
    --sea-foam: #8CCCA6;
    --violet: #704599;
    --honey: #DEA826;

    --light-charcoal: #878280;
    --wool: #C2B09E;
    --warm-cloud: #E8E7DD;
    font-family: ff-good-web-pro, sans-serif;

}
body {
    margin: 0;
    /* font-family: ff-good-web-pro, sans-serif; */
}
button, input{
    /* font-family: ff-good-web-pro, sans-serif; */
    font-size: inherit;
}

#page-header {
    min-height: 3.5em;
    max-height: max-content;
    display: flex;
    flex-direction: row;
    color: var(--parchment);
    background-color: var(--charcoal);
    margin: 0px;
    z-index: 99;
    /* padding: 0.5em; */
}
#page-header > a {
    /* display: grid; */
    justify-content: center;
    align-content: center;
    min-height: 3.5em;
    max-height: max-content;
    height: 100%;
    border-right: 2px solid var(--concrete);
}


#page-header > a {
    display: flex;
    width: fit-content;
    height: 100%;
    grid-auto-flow: row;
    text-align: center;
    color: var(--parchment);
    text-decoration: none;
    margin: 0px;
}
#page-header > a > * {
    padding: 0px 1em;
}
#page-header > a > *, #page-header > form > * {
    margin-top: auto;
    margin-bottom: auto;
}

#page-header a {
    text-decoration: inherit;
    color: inherit;
}
#page-header a:hover {
    background-color: var(--forest-green);
}

h1 {
    width: max-content;
    height: fit-content !important;
    font-size: larger;
    font-weight: bold;
    margin: auto 0px;
}

#logo {
    margin-top: auto;
    margin-bottom: auto;
    padding: 2px 1em;
    min-width: 1in;
    max-width: 6em;
    height: 2em;
}

form {
    margin-right: 1em;
    margin-left: auto;
    /* width: 100%; */
    display: flex;
    flex-direction: row;
}
form label {
    margin-right: 0.5em;
    margin-left: 0.5em;
}

form input[type="submit"], form input[type="text"] {
    border: 2px solid var(--honey);
    height: 24px !important;
}

form input[type="text"]:active {
    border: 2px solid var(--honey);
}

form input[type="text"] {
    margin-right: 0px;
    border-radius: 3px 0px 0px 3px;
}

form input[type="submit"] {
    /* height: 1.5em !important; */
    border-radius: 0px 3px 3px 0px;
    margin-left: 0px;
    padding: 4px 6px 21px 6px;
    /* padding: 4px; */
}

#out {
    visibility: hidden;
    height: 0px;
    width: 0px;
}

.htmx-request {
    opacity: 0.6;
    cursor: not-allowed;
}
body, html { 
    height: 100vh; 
    margin: 0; 
    scrollbar-width: none;
}
#content {
    margin: 0;
    padding: 0;
    width: 100%;
    /* max-height: calc(100vh - 4em) !important; */
    height: calc(100vh - 3.5em) !important;
}

