/* Print styles for Plaatsbezoek Checklist - De Woongids */

@page {
    size: A4;
    margin: 15mm;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333333;
    line-height: 1.4;
    font-size: 11pt;
    background: #ffffff;
    margin: 0;
    padding: 0;
}

.print-container {
    max-width: 210mm; /* A4 width */
    margin: 0 auto;
}

/* Header */
.print-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #089BBB;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.print-logo {
    font-size: 18pt;
    font-weight: 800;
    color: #089BBB;
    letter-spacing: 1px;
}
.print-title {
    text-align: right;
}
.print-title h1 {
    font-size: 16pt;
    margin: 0 0 2px 0;
    color: #333;
}
.print-title p {
    font-size: 9pt;
    color: #666;
    margin: 0;
}

/* Sections */
.print-section {
    margin-bottom: 20px;
}
.print-section h2 {
    font-size: 12pt;
    color: #089BBB;
    border-bottom: 1px solid #ddd;
    padding-bottom: 4px;
    margin-top: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Info Grid */
.info-section {
    background: #f8fafd;
    border: 1px solid #dce7f2;
    padding: 12px 15px;
    border-radius: 6px;
}
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.info-field {
    font-size: 10pt;
}

/* Checklist Items */
.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.check-row {
    display: flex;
    align-items: flex-start;
}
.check-box {
    width: 14px;
    height: 14px;
    border: 1px solid #555555;
    background: #ffffff;
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
    border-radius: 2px;
    display: inline-block;
}
.check-label {
    flex-grow: 1;
}
.check-label strong {
    font-size: 10.5pt;
    display: block;
    color: #222;
}
.check-label p {
    font-size: 9pt;
    color: #555;
    margin: 2px 0 0 0;
}

/* Page Break */
.page-break {
    page-break-before: always;
    height: 0;
    margin: 0;
    border: 0;
}

/* Footer */
.print-footer {
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 30px;
    text-align: center;
    font-size: 9.5pt;
    color: #666;
}
.print-footer strong {
    color: #089BBB;
}
.print-footer p {
    margin: 3px 0;
}

/* Print Specific Optimizations */
@media print {
    body {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    .info-section {
        background: #f8fafd !important;
        border-color: #dce7f2 !important;
    }
    .print-logo, .print-section h2, .print-footer strong {
        color: #089BBB !important;
    }
}

/* Noteervelden en sectie-nuances (v2) */
.check-notefield {
    font-size: 8.5pt;
    color: #444;
    margin-top: 4px;
    font-style: italic;
}
.check-section-note {
    font-size: 9pt;
    font-weight: normal;
    color: #888;
}
