#wptl-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(20, 20, 20, 0.92);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	animation: wptl-fade-in 0.2s ease-out;
}

#wptl-overlay .wptl-overlay-box {
	background: #fff;
	color: #222;
	max-width: 480px;
	padding: 32px 28px;
	border-radius: 10px;
	text-align: center;
	font-size: 16px;
	line-height: 1.5;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

html.wptl-blocked {
	overflow: hidden;
}

@keyframes wptl-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}
