/* css/popup.css */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    z-index: 9999;
  }
  
  .popup-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    max-width: 90vw;
    max-height: 70%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
    overflow: auto; /* Add overflow property for scrollbars if needed */
  }
  
  .popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
	z-index: 9999; 
  }
  
  .popup-close:hover {
    background-color: #555;
  }
  
  /* Make the image responsive and shrink it to fit the popup */
  .popup-content img {
    max-width: 100%;
    max-height: 70vh; /* Set a maximum height of 90% of the viewport height */
  }


 

 

  