.popup-container {
    position: fixed;
    top: -100px; /* Adjust this value to move the pop-up higher or lower */
    left: 0px; /* Adjust this value to move the pop-up more to the left or right */
    max-width: 600px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid #00adfa;
    display: flex;
    align-items: center;
    animation: popupAnimation 0.5s ease-in-out forwards; /* Animation for showing the pop-up */
  }
  
  .popup-logo {
    width: 50px;
    margin-right: 10px;
  }
  
  .popup-message-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
  }
  
  .popup-message {
    font-size: 12px;
    color: #000; /* Set color og message */
    line-height: 1.5;
    margin: 0;
  }
  
  @keyframes popupAnimation {
    from {
      top: -100px;
      opacity: 0;
    }
    to {
      top: 20px;
      opacity: 1;
    }
  }