.overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--bg-overlay);
	padding: 10px;
}

.modal {
	background: var(--bg-surface);
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 20px;
	gap: 16px;
}

.modal p {
	margin: 0;
	line-height: var(--line-height-copy);
}