#app-banner {
  display: none; /* Hide the banner by default */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding-top: 20px;
    background-color: #098FE2;
    color: #fff;
    text-align: center;
    text-decoration: none; /* Remove underline */
    z-index: 9999;

  }

  #app-banner a {
    color: #fff; /* Set the link color to white */
    text-decoration: none; /* Remove underline */
  }
  
  #close-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }



  #msg a {
    color: #fff;
    text-decoration: none; /* Remove underline */
  }