body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.836);
    z-index: 999;
  }
  
 
  .popup {
    position: absolute;
    top: 50%;
    left: 50%;
    /*width: 40%;  Adjust width for smaller screens */
    max-width: 25%; /* Set a maximum width */
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 20px 70px rgb(255 231 231 / 95%);
    z-index: 1000;
  }
  
  .popup-header {
    text-align: center;
    margin-bottom: 10px;
  }
  
  .popup-content img {
    max-width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 0 auto;
  }
  
  .close-popup-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .popup {
     width: 75%;
     max-width: 40%;
  }
}