body {
    background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
}

@page {
    size: A4 portrait;
    margin: 20mm;
}

@media print {
    body {
        background: #fff !important;
        color: #000 !important;
        font-size: 12pt;
        line-height: 1.4;
    }

    .no-print {
        display: none !important;
    }

    .print-center {
        display: flex;
        justify-content: center;
    }

    .print-center div {
        border: none !important;
        display: flex;
        justify-content: center;
    }

    .print-center div h1,
    p {
        display: none;
    }

    .w-full,
    .max-w-2xl,
    .p-8,
    .bg-white,
    .rounded-lg,
    .shadow-lg {
        box-shadow: none !important;
        border: 1px solid #000 !important;
        border-radius: 0 !important;
        padding: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    table {
        width: 100%;
        border-collapse: collapse;
    }

    table,
    th,
    td {
        border: 1px solid #000 !important;
    }

    th,
    td {
        padding: 8px;
        text-align: left;
    }

    h1 {
        font-size: 24pt !important;
        margin-bottom: 20px !important;
    }

    h2 {
        font-size: 18pt !important;
        margin-bottom: 15px !important;
    }
}