/* Full-screen white overlay, centered independently of the active theme. */
.elspr-overlay {
	position: fixed;
	inset: 0;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999999;
	font-family: system-ui, -apple-system, sans-serif;
	overflow: hidden;
}
.elspr-container {
	text-align: center;
}
.elspr-spinner {
	width: 64px;
	height: 64px;
	border: 6px solid #f0f0f0;
	border-top: 6px solid #3498db;
	border-radius: 50%;
	animation: elspr-spin 1s linear infinite;
	margin: 0 auto 20px;
}
.elspr-text {
	font-size: 18px;
	color: #333;
	margin: 0;
}
@keyframes elspr-spin {
	to { transform: rotate(360deg); }
}
/* Hide original page completely */
body > *:not(.elspr-overlay):not(script):not(noscript) {
	visibility: hidden !important;
}
