/* Full Page Print — frontend overlay */

#fpp-overlay {
	position: fixed;
	inset: 0;
	z-index: 2147483647;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 15, 18, 0.55);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	opacity: 0;
	transition: opacity 0.18s ease;
	pointer-events: all;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#fpp-overlay.is-visible {
	opacity: 1;
}

#fpp-overlay .fpp-overlay-card {
	background: #ffffff;
	color: #1a1814;
	padding: 22px 28px;
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 240px;
	max-width: 90vw;
}

#fpp-overlay .fpp-overlay-msg {
	margin: 0;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 500;
}

#fpp-overlay .fpp-spinner {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	border: 2px solid rgba(26, 24, 20, 0.18);
	border-top-color: #c2410c;
	border-radius: 50%;
	animation: fpp-spin 0.8s linear infinite;
}

@keyframes fpp-spin {
	to { transform: rotate(360deg); }
}

/* Hide our overlay from print rules anyway, just in case the capture flow
   is bypassed and the native print is called. */
@media print {
	#fpp-overlay { display: none !important; }
}
