/* Khusus Print */
@media print {
    @page {
        size: A4 portrait;   /* Bisa diganti 'landscape' kalau mau melebar */
        margin: 15mm;        /* Biar tidak terlalu mepet */
    }

    body {
        font-size: 12px;
        color: #000;
    }

    .card, .card-body {
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    /* Table rapat & full width */
    table {
        border-collapse: collapse !important;
        width: 100% !important;
        font-size: 12px;
    }

    table th, table td {
        border: 1px solid #000 !important;
        padding: 6px 8px !important;
        vertical-align: top;
    }

    /* Judul section */
    h5 {
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 14px;
    }

    /* Hilangkan tombol saat print */
    .no-print {
        display: none !important;
    }

    /* Signature area rapi */
    .signature-area .col-6 {
        padding-top: 50px;
    }

    /* Footer tetap di bawah */
    .footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        font-size: 11px;
        text-align: center;
    }

    .order-info {
        display: flex !important;
        justify-content: space-between !important;
    }
    .order-info .col-6 {
        width: 48% !important;
    }
    .order-info .col-6.text-right {
        text-align: right !important;
    }

    /* Tabel lebih rapat di layar dan print */
    .table th, .table td {
        padding: 6px 8px !important;
        font-size: 12px !important;
        vertical-align: middle;
    }
    .table-sm th, .table-sm td {
        padding: 4px 6px !important;
    }

}