.elw-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.15s ease;
	padding: 20px;
	box-sizing: border-box;
}

.elw-overlay.elw-visible {
	opacity: 1;
	visibility: visible;
}

.elw-box {
	background: #ffffff;
	border-radius: 8px;
	max-width: 420px;
	width: 100%;
	padding: 24px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	transform: translateY(-10px);
	transition: transform 0.15s ease;
}

.elw-overlay.elw-visible .elw-box {
	transform: translateY(0);
}

.elw-title {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 600;
	color: #1d2327;
}

.elw-message {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.5;
	color: #3c434a;
}

.elw-url {
	margin: 0 0 20px;
	font-size: 13px;
	word-break: break-all;
	background: #f6f7f7;
	border-radius: 4px;
	padding: 8px 10px;
	color: #2271b1;
}

.elw-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

.elw-btn {
	border: none;
	border-radius: 4px;
	padding: 9px 16px;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.15s ease;
}

.elw-btn-cancel {
	background: #f0f0f1;
	color: #2c3338;
}

.elw-btn-cancel:hover {
	background: #e0e0e1;
}

.elw-btn-confirm {
	background: #2271b1;
	color: #ffffff;
}

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

@media (max-width: 480px) {
	.elw-actions {
		flex-direction: column-reverse;
	}

	.elw-btn {
		width: 100%;
	}
}
