body {
    font-family: Arial, sans-serif;
    margin: 24px;
    line-height: 1.6;
    background: linear-gradient(180deg, #d0e0f8, #90a8c8);
    background-color: #90a8c8;
    border: 0px solid transparent;
    min-height: 100vh;
}
@media (max-width: 600px) {
    body {
        margin: 10px;
    }
}
.container {
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #000;
}
@media (max-width: 600px) {
    .container {
        padding: 12px;
        padding-bottom: 20px;
    }
}
.container-header {
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #000;
    border-radius: 5px 5px 0 0;
    border-bottom: none;
}
@media (max-width: 600px) {
    .container-header {
        padding: 12px;
    }
}
.container-footer {
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #000;
    border-radius: 0 0 5px 5px;
    border-top: none;
}
.header-logo {
    margin: 0 auto;
    display: block;
    width: 471px;
    max-width: 100%;
    height: auto;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2em;
}
h1 {
    margin-top: 0;
    text-align: center;
}
.container > :first-child {
    margin-top: 0;
}
p:has(+ ul) {
    margin-bottom: 10px;
}
ul {
    margin-top: 10px;
}
.bold {
    font-weight: bold;
}
.disclaimer {
    font-style: italic;
    font-size: small;
    margin-bottom: 0;
}
.contact {
    text-align: center;
}
.form-box {
    float: right;
    background-color: white;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 10px;
    margin-left: 20px;
    margin-bottom: 10px;
}
.form-row {
    display: flex;
    gap: 16px;
    align-items: center;
}
.form-row > label {
    white-space: nowrap;
}
.form-row > .form-group {
    margin-top: 0;
    margin-bottom: 0;
}
.form-group {
    margin-top: 8px;
    margin-bottom: 8px;
}
textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
    border-radius: 4px;
    resize: vertical;
}
button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    font-size: 1.1em;
    border: 1px solid rgba(0,0,0,0.25);
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background-color: #5CBF60;
}
button:disabled {
    background-color: #999;
    cursor: default;
}
.button-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.button-container button:last-child {
    grid-column: 2;
}
.button-container .button-cancel {
    grid-column: 1;
    justify-self: start;
    font-size: 0.8em;
    padding: 4px 10px;
    background-color: #eee;
    color: #333;
}
.button-container .button-cancel:hover {
    background-color: #ddd;
}
.photo-preview-wrapper {
    position: relative;
    display: block;
    width: fit-content;
    margin-top: 6px;
    margin-bottom: 15px;
}
.photo-preview {
    max-width: 300px;
    max-height: 150px;
    border: 1px solid #333;
    border-radius: 4px;
    display: block;
}
.file-upload-clear-button {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    padding: 0;
    background-color: rgba(180, 30, 20, 0.85);
    color: white;
    border-radius: 50%;
    line-height: 22px;
    text-align: center;
}
.file-upload-clear-button:hover {
    background-color: rgba(220, 50, 30, 0.95);
}
input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]),
textarea,
select {
    font-size: 16px;
}
::file-selector-button {
    font-size: 16px;
}
input[type="file"] {
    max-width: 100%;
}
input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="hidden"]) {
    border: 1px solid #888;
    border-radius: 4px;
    padding: 4px 8px;
}
select {
    font-size: 1em;
}
input[type="email"] {
    width: 300px;
    box-sizing: border-box;
}
input[readonly] {
    background-color: #f0f0f0;
    color: #555;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: default;
}
.radio-group {
    margin-left: 4px;
    max-width: 100%;
    overflow: hidden;
}
.radio-group label {
    margin-right: 16px;
    white-space: nowrap;
}
.radio-option {
    display: block;
    margin-top: 8px;
    margin-bottom: 8px;
    cursor: pointer;
}
.radio-desc {
    margin-left: 24px;
    font-size: 0.9em;
    color: #666;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.parts-table {
    margin-top: 4px;
    margin-bottom: 20px;
    width: 100%;
    border-collapse: collapse;
}
.parts-table th,
.parts-table td {
    border: 1px solid #999;
}
.parts-table input {
    width: 100%;
    box-sizing: border-box;
}
.parts-table .col-sku,
.parts-table .col-pn {
    width: 120px;
}
.parts-table .col-qty {
    width: 60px;
}
.parts-table .row-num {
    border: none;
    width: 1em;
    text-align: center;
}
.form-aligned {
    padding-bottom: 12px;
    margin-left: 12px;
}
.form-aligned .form-group {
    display: flex;
    align-items: center;
}
.form-aligned .form-group label {
    display: inline-block;
    flex-shrink: 0;
}
.form-aligned .form-group label,
.form-aligned-label {
    width: 110px;
    flex-shrink: 0;
}
.form-aligned input {
    width: 300px;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.narrow-input,
.form-aligned .narrow-input,
input#tail,
input#order {
    width: 100px;
    box-sizing: border-box;
}
.tail-highlight,
input[readonly].tail-highlight {
    font-weight: bold;
    color: #FF0000;
}
.task-description,
input[readonly].task-description {
    color: #0000FF;
}
.wide-input {
    width: 300px;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.indent-paragraph {
    padding-left: 2em;
    text-indent: -2em;
}
.inline-input {
    display: inline-block;
    width: auto;
    margin-left: 10px;
}
.email-output-debug {
    background-color: #f0f0f0;
    padding: 8px;
    border: 1px solid #666;
}
.email-output-debug + .email-output-debug {
    margin-top: 16px;
}
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 4px;
}