.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	display: none; /* Hidden by default */
	z-index: 999999;
	align-items: center;
	justify-content: center;
}

.modal-content {
	background: #fff;
	padding: 20px 30px;
	border-radius: 4px;
	max-width: 500px;
	width: 90vw;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	margin: 20vh auto;
}

.modal-content h2 {
	margin: 0 20px;
	padding: 0;
	font-family: sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: #313E50;
}

.modal-content p {
	margin: 15px 0;
	font-size: 16px;
	font-family: sans-serif;
	font-size: 16px;
}

.modal-content button {
	background: #57A797;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-family: sans-serif;
	font-size: 16px;
	font-weight: 500;
}

.modal-content button:hover {
	background: #313E50;
}

@media (min-width: 980px) {
	#mobile-warning-modal {
		display: none !important;
	}
}