.overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
      z-index: 998; /* Ensure the overlay appears below the popup */
    }
    
    .popup {
      display: none;
      position: fixed;
      top: 50%; /* Adjust top position as needed */
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 999; /* Ensure the popup appears on top of other content */
    }

    .popup-content {
      position: relative;
      background-color: #EDEDED;
      padding: 20px;
      border-radius: 5px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    .close {
      position: absolute;
      top: 10px;
      right: 10px;
      cursor: pointer;
    }

    .button {
      background-color: #fff !important;
      color: #000000 !important;
      border: none !important;
      padding: 10px 20px;
      font-size: 16px;
      cursor: pointer;
    }