/* Popup background */ 
.popup-container { 
position: fixed; 
top: 0; 
left: 0; 
width: 100%; 
height: 100%; 
background-color: rgba(0, 0, 0, 0.5); 
display: flex; 
justify-content: center; 
align-items: center; 
visibility: hidden;
z-index: 1000; 
} 

/* Popup content */ 
.popup { 
background-color: #343434; 
color: #fff;
padding: 20px; 
border-radius: 10px; 
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
text-align: center; 
width: 300px; 
} 

/* Close button */ 
.close-btn { 
background-color: #d33; 
color: white; 
border: none; 
padding: 10px 20px; 
border-radius: 5px; 
cursor: pointer; 
margin-top: 20px; } 

/* Show the popup */ 
.show-popup { 
visibility: visible; 
}

/* Popover-section*/
/* Popover background */
.popover-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	z-index: 1000; /* Ensures the popover is on top */
}

/* Popover content */
.popover {
	background-color: #343434; 
	color: #fff;
	padding: 20px; 
	border-radius: 10px; 
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
	text-align: center; 
	width: 80%;
}

/* Popover scrollbar */
.popover {
  max-height: 75%; /* Set a maximum height for the popover content */
  overflow-y: hidden; /* Hide the overflow by default */
}

.show-popover .popover {
  overflow-y: auto; /* Make the content scrollable when the popover is shown */
}

/* Close button */
.close-btn {
	background-color: #d33;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	margin-top: 20px;
}

/* Show the popover */
.show-popover {
	visibility: visible;
}

/* Link styling */
.open-link {
	color: #fff;
	text-decoration: underline;
	transition: 0.3s ease; 
	}
.open-link:hover {
  color: #777; 	  
  }