    /* Include Roboto font from Google Fonts */
    @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

    @media print {
        .content {
            display: none;
        }

        .print-only, .print-only * {
            visibility: visible;
            font-family: 'Roboto', sans-serif; /* Apply Roboto font */
            font-size: 22px; /* Set font size to 22px */
        }

        .print-only {
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            margin: 20mm; /* Adjust the margin size as needed */
            width: auto;
            height: auto;
        }
    }