@media print {
	
	.pdfViewer .textLayer span { 
		color: #141827 !important;
	}

	/* Ensure modal content is visible and flows naturally */
	.tribe-dialog__wrapper.tribe-modal__wrapper--attendee-details.tribe-tickets__admin-container {
		position: static !important; /* Prevents absolute/fixed positioning from cutting off content */
		overflow: visible !important; /* Allows content to flow onto multiple pages */
		height: auto !important;
		max-height: none !important;
		width: auto !important;
	}

	/* Optionally hide other page elements */
	.site-header, .site-footer, .main-content-area-except-modal {
		  display: none !important;
	}

	/* Ensure other content on the page doesn't interfere */
	body > *:not(.tribe-common .tribe-dialog__wrapper) {
		display: none !important;
	}

	body {
		background-color: #fff !important; /* Ensure white background for print clarity */
	}
	
}

