body {
	margin: 0;
	min-height: 100vh;
	background: #f4f4f4;
}

/* Overlay */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Popup */
.modal {
	background: white;
	padding: 2rem;
	border-radius: 16px;
	width: 90%;
	max-width: 420px;
	text-align: center;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.modal h2 {
	margin-top: 0;
	margin-bottom: 1.5rem;
	font-size: 1.4rem;
	font-weight: 600;
}

.button-row {
	display: flex;
	gap: 12px;
	justify-content: center;
}

button {
	border: none;
	border-radius: 8px;
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	cursor: pointer;
}

.maybe-later {
	background: #e5e5e5;
}

.yes {
	background: #0078d4;
	color: white;
}

button:hover {
	opacity: 0.6;
}

.hidden {
	display: none;
}
