body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #525659;
    display: flex;
    justify-content: center;
    color: #333;
}

.artboard {
    width: 210mm;
    height: 297mm;
    background: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    padding: 15mm;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.form-container {
    width: 100%;
    height: 100%;
    border: 1px solid #000;
    box-sizing: border-box;
    padding: 0; /* Let sections handle padding */
    display: flex;
@media print {
    body {
        background: none;
        padding: 0;
    }
    .artboard {
        width: 100%;
        height: 100%;
        box-shadow: none;
        margin: 0;
        padding: 0;
        border: none;
        overflow: visible;
    }
    .form-container {
        border: 1px solid #000;
        height: 100%;
        width: 100%;
    }
    @page {
        size: A4;
        margin: 10mm;
    }
}

    flex-direction: column;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Better alignment */
    margin-bottom: 15px;
    border-bottom: 1px solid #000;
    padding: 10px 15px;
}

.logo-text {
    font-size: 11px;
    color: #444;
    line-height: 1.4;
}

.rta-logo {
    color: #bd1622;
    font-weight: 800;
    font-size: 26px;
    text-align: right;
    line-height: 1;
}

h1 {
    font-size: 15px;
    margin: 10px 15px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
}

.urgency-row {
    display: flex;
    border: 1px solid #000;
    width: fit-content;
    margin: 0 15px 10px 15px;
}

.urgency-option {
    padding: 4px 12px;
    border-right: 1px solid #000;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    text-transform: uppercase;
}

.urgency-option:last-child {
    border-right: none;
}

.urgency-option.red {
    color: red;
}

.section-header {
    background-color: #008744; /* More professional green */
    color: white; /* Better contrast */
    font-weight: 700;
    padding: 8px;
    text-align: center;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-section {
    padding: 15px;
    font-size: 12px;
}

.checkbox-row {
    margin-bottom: 10px;
    align-items: flex-start;
}

input[type="checkbox"] {
    width: 14px;
    height: 14px;
    border: 1px solid #666;
    margin-right: 8px;
    cursor: pointer;
}

.checkbox-label {
    flex: 1;
    line-height: 1.4;
}

.dotted-line {
    border-bottom: 1px dotted #000;
    display: inline-block;
    min-width: 50px;
}

.solid-line {
    border-bottom: 1px solid #000;
    display: inline-block;
    flex: 1;
    margin-left: 5px;
}

.highlight-yellow {
    background-color: yellow;
}

.location-box {
    background-color: #d9d9d9;
    padding: 5px;
    margin: 10px 0;
    border: 1px solid #ccc; /* Or none as per image looks like just bg */
    font-weight: bold;
}

.approving-authority {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #000;
    border-top: none;
    padding: 5px;
    font-weight: bold;
    font-size: 12px;
}

.approving-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.approving-option {
    display: flex;
    align-items: center;
    gap: 3px;
}

.details-section {
    padding: 15px;
    font-size: 12px;
}

.signature-box {
    display: flex;
    align-items: stretch;
    border-top: 1px solid #000;
.signature-content {
    flex: 1;
    background: white;
    height: 100%;
    display: flex;
.date-row {
     display: flex;
     margin-bottom: 5px;
}

    align-items: center;
    justify-content: flex-end; /* Signatures usually right aligned or centered */
    padding-right: 20px;
}

.signature-label {
     width: 40%;
     background: #bfbfbf;
     height: 100%;
     display: flex;
     align-items: center;
     padding-left: 5px;
     border-right: 2px solid #000;
}

.signature-content {
    flex: 1;
    background: white;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Signatures usually right aligned or centered */
    padding-right: 20px;
}

.signature-label {
     width: 40%;
     background: #bfbfbf;
     height: 100%;
     display: flex;
     align-items: center;
     padding-left: 5px;
     border-right: 2px solid #000;
}

    border-bottom: 1px solid #000;
    background-color: #f9f9f9;
}

.signature-label {
    width: 40%;
    background-color: #e0e0e0;
    font-weight: 700;
    font-size: 11px;
    padding: 10px;
    border-right: 1px solid #000;
    display: flex;
    align-items: center;
}

.signature-content {
    flex: 1;
    background-color: white;
    padding: 10px;
}

.date-transmittal {
    padding: 15px;
    font-size: 12px;
}

.footer-signature {
    padding: 15px;
    font-weight: 700;
    font-size: 12px;
    border-top: 1px solid #000;
}

/* Helper for inputs inline */
input[type="text"] {
    border: none;
    border-bottom: 1px dotted #000;
    background: transparent;
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

/* Checkbox styling attempt to match square box */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border: 2px solid #000;
    background: white;
    cursor: pointer;
    position: relative;
}

input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    top: -3px;
    left: 1px;
    font-size: 14px;
    color: #000;
    font-weight: bold;
}

.signature-overlay {
    position: absolute;
    right: 50px;
    margin-top: -20px;
    pointer-events: none;
}
