  
  #popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .popup {
    background: #fff;
    width: 80%;
    max-width: 400px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .popup p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .popup-buttons {
    display: flex;
    justify-content: space-between;
  }
  
  .button {
    width: 48%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .button.agree {
    background-color: var(--primary-color);
    color: #fff;
  }
  
  .button.disagree {
    background-color: #e0e0e0;
    color: #000;
  }

  .hidden {
    display: none !important;
  }
  