.dialog-mask {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(4px);
	z-index: 999;
}

.dialog {
	background: #fff;
	padding: 20px 30px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	min-width: 200px;
	text-align: center;
}

.dialog-title {
	font-size: 20px;
	margin-bottom: 20px;
}

.dialog-button {
	background-color: #4dd8ff;
	border: none;
	color: white;
	padding: 10px 40px;
	text-align: center;
	text-decoration: none;
	display: block;
	width: 100%;
	font-size: 16px;
	font-weight: 600;
	margin: 4px 2px;
	cursor: pointer;
	border-radius: 8px;
	transition: background-color 0.3s ease;
}

.dialog-button:hover {
	background-color: #27b7ff;
}
