* {
    margin: 0;
    padding: 0;
}
html {
    width: 100%;
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: 100%;
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.75em;
    font-weight: 400;
    color: #333;
    background-color: #f6f5f0;
}
header {
    background-color: #f2ebe5;
    text-align: center;
    border-bottom: solid 1px #d9d3b8;
}
.header-logos img {
    vertical-align: top;
    margin: 0 0 0 10px;
}
h1 {
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 28px;
    letter-spacing: .085em;
    line-height: 1.17857em;
    color: #243305;
}
main {
    flex: 1;
}
.container {
    padding: 10px;
}
form {
    display: block;
    width: 750px;
    max-width: 95%;
    margin: 10px auto;
}
fieldset {
    padding: 10px;
    background-color: white;
    border: solid 1px #d9d3b8;
    border-radius: 0.5em;
    margin-bottom: 10px;
}
legend {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
}
table {
    width: 100%;
    margin-bottom: 10px;
    border-collapse: collapse;
}
table th, table td {
    font-size: 0.9em;
    text-align: left;
    padding: 2px 5px;
}
table th {
    font-weight: bold;
    border-bottom: solid 1px #d9d3b8;
}
#product-selection {
    margin-left: 15px;
}
.product-entry {
    margin-bottom: 5px;
}
input[type='text'], input[type='email'], input[type='phone'] {
    padding: 3px 5px;
    /* background-color: #f6f5f0; */
}
select {
    padding: 3px 0;
    /* background-color: #f6f5f0; */
}
.product-entry select {
    width: 100%;
}
label {
    font-size: 0.9;
}
td:has(> label) {
    width: 150px;
}
button {
    padding: 2px 5px;
    cursor: pointer;
}
button:has(> .fa-trash):hover {
    color: red;
}
button:has(> .fa-trash) {
    float: right;
    margin-top: 2px;
}
.center, .center * {
    text-align: center;
}
.left {
    text-align: left;
}
.right {
    text-align: right;
}
.info {
    font-style: italic;
    color: blue;
}
.hidden {
    display: none;
}
footer {
    background-color: #fff;
    border-top: solid 1px #d9d3b8;
    text-align: center;
    font-size: 0.9em;
}
