body.modal-open 
{
	overflow: hidden;
}

#modal-overlay 
{
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.modal 
{
	display: block !important;
 	background: #fff;
	padding: 2rem;
	border-radius: 8px;
 	max-width: 400px;
	width: 90%;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal button 
{
	margin-top: 1rem;
	font-size: 16px;
	cursor: pointer;
}