.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .popup-content {
    background: white;
    padding: 20px;
    padding-top: 0;
    border-radius: 10px;
    text-align: end;
    max-width: 350px;
  }
  
  .popup-content button {
    border: none;
    padding-bottom: 10px;
    padding-top: 10px;
    background: #ffffff;
    color: rgb(0, 0, 0);
    cursor: pointer;
    border-radius: 5px;
  }
  
  
  