#lmn-popup-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 18, 25, 0.65);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	backdrop-filter: blur(2px);
	font-family: Tahoma, "Segoe UI", Arial, sans-serif;
	direction: rtl;
}

#lmn-popup-overlay.lmn-hidden {
	display: none;
}

body.lmn-no-scroll {
	overflow: hidden;
}

.lmn-popup-box {
	background: #ffffff;
	border-radius: 14px;
	max-width: 420px;
	width: 100%;
	padding: 32px 28px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
	animation: lmn-pop-in 0.25s ease-out;
}

@keyframes lmn-pop-in {
	from { transform: scale(0.92); opacity: 0; }
	to   { transform: scale(1); opacity: 1; }
}

.lmn-popup-icon {
	font-size: 36px;
	margin-bottom: 8px;
}

.lmn-popup-title {
	margin: 0 0 12px;
	font-size: 20px;
	color: #1d2327;
}

.lmn-popup-message {
	font-size: 15px;
	line-height: 1.9;
	color: #3c434a;
	margin: 0 0 20px;
}

.lmn-popup-timer {
	font-size: 30px;
	font-weight: bold;
	letter-spacing: 2px;
	color: #d63638;
	background: #fdf0f0;
	border-radius: 10px;
	padding: 10px 0;
	margin-bottom: 22px;
	direction: ltr;
}

.lmn-popup-confirm-btn {
	background: #2271b1;
	color: #fff;
	border: none;
	padding: 12px 28px;
	font-size: 15px;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.15s ease;
}

.lmn-popup-confirm-btn:hover {
	background: #135e96;
}

.lmn-popup-confirm-btn:disabled {
	opacity: 0.6;
	cursor: default;
}

.lmn-popup-confirmed-msg {
	color: #1a7f37;
	font-weight: bold;
	font-size: 15px;
	margin: 0;
}

.lmn-hidden {
	display: none !important;
}
