
        @media print {
            body * {
                visibility: hidden;
            }
            #print-area, #print-area * {
                visibility: visible;
            }
            #print-area {
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                margin: 0;
                padding: 0;
            }
            .no-print {
                display: none !important;
            }
            .card {
                break-inside: avoid;
                page-break-inside: avoid;
            }
        }
        
        body {
            background: linear-gradient(to top, #ffffff 0%, #ffffff 50%, #2e8b57 100%);
            min-height: 100vh;
        }
		
        
        /* Portrait Folio size (8.5" x 13") */
        .print-container {
            width: 21.59cm; /* 8.5 inches */
            min-height: 33.02cm; /* 13 inches */
            margin: 0 auto;
            padding: 0.5cm;
            box-sizing: border-box;
        }
        
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 2 columns */
            grid-template-rows: repeat(6, 1fr); /* 6 rows */
            gap: 0.2cm;
            width: 100%;
            height: 100%;
        }
        
        .card {
            width: 100%;
            height: 5.3cm;
            border: 1px solid #000;
            padding: 0.2cm;
            box-sizing: border-box;
            position: relative;
            overflow: hidden;
            background-color: white;
            color: #000;
        }
        
        .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 0.1cm;
        }
        
         .logo-container {
            height: 0.9cm; /* Reduced from 1.2cm to 0.9cm */
            width: 0.9cm; /* Set explicit width to make it square and smaller */
            margin-right: 0.3cm;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .logo-img {
            max-width: 100%;
            max-height: 100%;
        }
        
        .header-text-container {
            flex: 1;
        }
        
        .header-text-1 {
            font-size: 9pt;
            line-height: 1.2;
            text-align: center;
            margin: 0;
            padding: 0;
            font-weight: bold;
        }
        
        .header-text-2 {
            font-size: 9pt;
            line-height: 1.2;
            text-align: center;
            margin: 0;
            padding: 0;
            font-weight: bold;
        }
        
        .header-text-3 {
            font-size: 9pt;
            line-height: 1.2;
            text-align: center;
            margin: 0;
            padding: 0;
            font-weight: bold;
        }
        
        .header-divider {
            border-bottom: 1px solid #000;
            margin-bottom: 0.1cm;
        }
        
        .card-title {
            font-size: 12px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 0.1cm;
        }
        
        .card-content {
            font-size: 10pt;
            font-family: 'Arial Narrow', Arial, sans-serif;
            width: 100%;
            display: table;
        }
        
        .card-content-row {
            display: table-row;
        }
        
        .card-label {
            display: table-cell;
            padding-right: 0.2cm;
            white-space: nowrap;
            width: 1%;
        }
        
        .card-colon {
            display: table-cell;
            width: 0.3cm;
            text-align: center;
        }
        
        .card-value {
            display: table-cell;
            padding-left: 0.1cm;
        }
        
        .bold-value {
            font-weight: bold;
        }
        
        .qrcode {
            position: absolute;
            right: 0.3cm;
            bottom: 0.3cm;
            width: 1.8cm;
            height: 1.8cm;
        }
        
        .card-footer {
            position: absolute;
            bottom: 0.2cm;
            left: 0.2cm;
            font-size: 8px;
            font-style: italic;
            width: calc(100% - 2.5cm); /* Leave space for QR code */
        }
        
        .app-footer {
            text-align: center;
            padding: 1rem;
            font-size: 0.875rem;
            color: #ffffff;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 2rem;
        }
        
        .main-container {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            padding: 2rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }
        
        .form-container {
            background-color: white;
            color: #333;
            border-radius: 0.5rem;
        }
        
        .page-title {
            color: white;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        @page {
            size: portrait;
            margin: 0;
        }
    