/* popup styles */

 /* Pop-up container */
 #disclaimerPopup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	opacity: 1;
	transition: opacity 0.3s ease;
	pointer-events: auto; /* Allow interaction when visible */
}

#disclaimerPopup.hidden {
	opacity: 0;
	pointer-events: none; /* Prevent interaction during fade-out */
}

/* Pop-up content */
.popup-content {
	background: #EDE5C6; /* Background color */
	color: #3A3B3C; /* Text color */
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	text-align: left;
	max-width: 900px; /* Increased width to 900px */
	width: 90%; /* Wider pop-up window */
	height: auto; /* Height will adjust automatically to fit content */
}

/* Disclaimer Title style */
.popup-content h2 {
	font-size: 26px;
	color: #3A3B3C; /* Dark gray for the title */
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}

/* Disclaimer Information */
.popup-content p {
	font-size: 18px;
	line-height: 1.6; /* Increased line height for readability */
	color: #3A3B3C; /* Dark gray for the body text */
	margin-bottom: 20px;
}

/* Close button */
.popup-content button {
	margin-top: 20px;
	background-color: #3A3B3C; /* Button color (dark gray) */
	color: #FFFFFF; /* Light beige for the button text */
	border: none;
	padding: 12px 30px;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* Button hover effect */
.popup-content button:hover {
	background-color: #2d2d2e; /* Slightly darker shade for hover */
}

/* Hide the popup */
#disclaimerPopup.hidden {
	visibility: hidden;
	opacity: 0;
}