.popup-header {
    background-color: #BD73E8; /* ClipLabs brand color */
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #FFFFFF; /* ClipLabs brand color */
    text-align: center;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: transform 0.3s ease-in-out;
  }
  
  .popup-header.show {
    display: block;
    transform: translateY(0);
  }
  
  .popup-header.hide {
    transform: translateY(-100%);
  }
  
  .popup-header button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
  
  body.push-down {
    margin-top: 50px; /* Adjust this value based on the height of the popup header */
    transition: margin-top 0.3s ease-in-out;
  }
  
  body.pull-up {
    margin-top: 0;
  }
  