#legal-notifier-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10000;
}

#legal-notifier-popup {
	background: #fff;
	padding: 40px 40px 20px;
	border-radius: 5px;
	max-width: 600px;
	width: 90%;
	position: relative;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	text-align: center;
}

#legal-notifier-popup .legal-notifier-content {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 20px;
	text-align: left;
}

#legal-notifier-accept {
	max-width: 40%;
	background-color: #261656; /* Haymarket blue */
	color: #fff;
	border: none;
	padding: 12px 20px;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	display: inline-block;
	text-transform: uppercase;
	font-weight: bold;
	transition: background-color 0.2s ease;
}

#legal-notifier-accept:hover {
	background-color: #261656; /* Haymarket blue */
	opacity: 0.85;
}
/* Add this new class to your existing CSS file */
body.legal-notifier-modal-open {
    overflow: hidden;
}