.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	display: none;
	justify-content: center;
	align-items: center;
}
.overlay.show {
	display: flex;
}
.overlay-content {
	background: #cccccc;
	padding: 30px 40px;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.5);
	text-align: center;
	max-width: 400px;
}
.overlay-title {
	font-size: 24px;
	font-weight: bold;
	color: #333;
	margin-bottom: 15px;
}
.overlay-message {
	font-size: 18px;
	color: #333;
	margin-bottom: 20px;
}
.overlay-buttons {
	display: flex;
	gap: 10px;
	justify-content: center;
}
.overlay-button {
	padding: 10px 30px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.2s;
}
.overlay-button.continue {
	background: white;
	color: #599fcf;
}
.overlay-button.continue:hover {
	background: #c0c0c0;
}
.overlay-button.cancel {
	background: #e0e0e0;
	color: #599fcf;
}
.overlay-button.cancel:hover {
	background: #c0c0c0;
}
