
  .pop-up {
    position: relative;
    display: inline-block;
  }

  .pop-up-content {
    display: none;
    position: absolute;
    background-color: rgb(255, 252, 251);
    border: 3px solid #BBCCCC;
	border-radius: 7px;
    padding: 20px;
	width: 360px;
	font-size: 1rem;
    z-index: 1;
    max-height: 80vh; /* Set maximum height of the pop-up */
    overflow-y: auto; /* Add vertical scrollbar when content overflows */
  }
  

  .pop-up:hover .pop-up-content {
    display: block;
  }

  .pop-up-content.open-left {
    left: 0;
    transform: translateX(-80%);
  }

  .pop-up-content.open-right {
    right: 0;
    transform: translateX(80%);
  }

  .pop-up-content.open-center {
    left: 0;
    transform: translateX(-30%);
  }

.highlighted {
  background-color: rgba(173, 216, 230, 0.4);
  letter-spacing: 2px;
  padding: 1px 3px 1px 9px; 
}



.visually-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.width250 {
	width: 250px;
}

.padding1 {
	padding: 1px;
}