.full-screen-popup-class {
  position: fixed;
  top: 0;
  left: 0;
  /*width: 100%;
  height: 100%;*/
  width: 100vw;
  height: 100vh;	
  background-color: white; /* Or any color with opacity */
  z-index: 1000; /* Ensure it's above other content */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.popup-active {
  overflow: hidden; /* Prevent scrolling when popup is open */
}

#close-popup {
  margin-top: 20px;
  padding: 10px 20px;
  cursor: pointer;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
}
