body {
    font-family: Arial;
    margin: 0;
}

.page {
    display: flex;
}

.sidebar {
    width: 230px;
    background: #0B0B0B;
    color: white;
    padding: 1rem;
}

.doc {
    background: white;
    padding: 24px;
    max-width: 980px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.muted {
    color: #64748b;
}

.small {
    font-size: 12px;
}

.addr {
    white-space: pre-wrap;
    margin-top: 8px;
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.section-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.lines {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

    .lines th {
        text-align: left;
        border-bottom: 2px solid #e5e7eb;
        padding: 8px 6px;
    }

    .lines td {
        border-bottom: 1px solid #f1f5f9;
        padding: 10px 6px;
        vertical-align: top;
    }

/* PRINT ONLY */
@media print {
    /* Hide anything marked no-print */
    .no-print,
    .no-print * {
        display: none !important;
    }

    body {
        background: white !important;
    }

    /* Let the document use full width */
    main,
    .content,
    .container,
    .container-fluid {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Clean “paper” look */
    .doc {
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
    }
}
