/**
 * Falcon PDF Branding - HTML preview header/footer bars.
 * Scoped strictly to body.viewestimate (set by the Estimate client-portal
 * controller) so this never affects any other admin/client page.
 * Rendered as body::before / body::after so no core view file is touched.
 */

body.viewestimate {
    padding-top: 120px;
    padding-bottom: 130px;
}

body.viewestimate::before,
body.viewestimate::after {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-color: #fff;
    z-index: 1000;
    pointer-events: none;
}

body.viewestimate::before {
    top: 0;
    height: 110px;
    background-position: 15px center;
    background-size: 260px auto;
    border-bottom: 1px solid #ececec;
}

body.viewestimate::after {
    bottom: 0;
    height: 120px;
    background-position: center bottom 10px;
    background-size: 94% auto;
    border-top: 1px solid #ececec;
}

@media print {
    body.viewestimate::before,
    body.viewestimate::after {
        position: fixed;
    }
}

/**
 * Quotation body layout (Milestone 2) - title / customer block / quotation
 * info table. Basic spacing only; fine visual polish against the reference
 * design is Milestone 4's job.
 */
.falcon-quotation-title-row {
    margin-bottom: 10px;
}

.falcon-quotation-title {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.falcon-quotation-meta-row {
    margin-bottom: 15px;
}

.falcon-quotation-customer-block address {
    margin-top: 8px;
}

.falcon-quotation-info-table {
    margin-bottom: 0;
}

.falcon-quotation-info-table td:first-child {
    font-weight: 500;
    white-space: nowrap;
}

.falcon-quotation-custom-field {
    margin-bottom: 10px;
}

.falcon-estimate-terms-tools {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    margin-top: 12px;
    background: #fafafa;
}

.falcon-estimate-terms-tools .falcon-estimate-terms-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.falcon-estimate-terms-tools .form-group:last-child {
    margin-bottom: 0;
}

.falcon-estimate-preview-hint {
    margin-top: 12px;
    color: #6b7280;
}
