.popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: auto;
    max-width: 400px;
    height: auto;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 20px;
    z-index: 1000;
  }
  
  .popup.hidden {
    display: none;
  }
  
  #cookiePopup .popup-content {
    background: #000;
    color: #fff;
  }
  
  #managePopup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: auto;
    height: auto;
    max-width: 317px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
  }
  
  #managePopup .popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
  }
  
  button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button#gotItBtn {
    background-color: #000;
    color: #fff;
  }
  
  button#manageBtn,
  button#cancelManageBtn {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
  }
  
  button#saveManageBtn {
    background-color: #000;
    color: #fff;
  }
  
  .close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
  }
  