.wrapper {
    position: fixed;
    bottom: 50px;
    left: -370px;
    max-width: 345px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 5px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .wrapper.show {
    left: 20px;
  }
  .wrapper header {
    display: flex;
    align-items: center;
    column-gap: 0px;
    flex-direction: row-reverse;
  }

  header h2 {
    color: #283779;
    font-weight: bold;
    text-align: center;
    font-size: 20px;
    margin-bottom: 0px;
    font-family: "SomarSans";
  }
  .wrapper .data {
    margin-top: 0px;
  }
  .wrapper .data p {
    color: #333;
    font-size: 16px;
  }
  .data p a {
    color: #283779;
    text-decoration: none;
  }
  .data p a:hover {
    text-decoration: underline;
  }
  .wrapper .buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #8a1a9b;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
  }
  .buttons #acceptBtn:hover {
    background-color: #8a1a9b;
  }
  #declineBtn {
    border: 2px solid #8a1a9b;
    background-color: #fff;
    color: #8a1a9b;
  }
  #declineBtn:hover {
    background-color: #8a1a9b;
    color: #fff;
  }