#floating-download-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    font-size: inherit;
    cursor: pointer
  }
  #floating-download-btn:hover {
    background-color: #e1eaf7;
  }
  #floating-download-btn img {
    width: 20px;
    height: 20px;
    margin-right:5px;
  }

  @media (min-width: 1280px) {
    #floating-download-btn {
      display: none;
    }
  }