.custom-link {
    display: black;
}

@media print {
    .only-print {
        display: black;
    }
    .hide-in-print-screen {
        display: none;
    }
}


@media print {
    /* 1. Main Store Name */
    #content-to-pdf h2 strong.text-2xl {
        font-size: 10px !important;
        text-align: center !important;
        line-height: 120% !important; 
    }

    /* 2. Store Address & Phone Number */
    #content-to-pdf h2 small.text-lg p {
        font-size: 8px !important;
        line-height: 120% !important;
    }

    /* 3. General Labels (Invoice date, ID, Customer) */
    #content-to-pdf label.font-bold,
    #content-to-pdf .flex.items-center,
    #content-to-pdf .flex.items-center div {
        font-size: 11px !important;
    }

    /* 4. Item Names (The products ordered) */
    #content-to-pdf .truncate h3 {
        font-size: 13px !important;
        font-weight: bold !important;
    }

    /* 5. Item Prices & Subtotals */
    #content-to-pdf .product-topping, 
    #content-to-pdf .font-semibold p {
        font-size: 12px !important;
    }

    /* 6. The "Powered by" footer */
    #content-to-pdf .coooo,
    #content-to-pdf p.text-2xl.text-center {
        display: none !important;
    }
}