.download-button {
    position: absolute;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    color: var(--esp-tools-button-text-color, #fff);
    background-color: var(--esp-tools-button-color, #03a9f4);
    border: none;
    border-radius: var(--esp-tools-button-border-radius, 9999px);
  }
  
  .download-button::before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.2;
    border-radius: var(--esp-tools-button-border-radius, 9999px);
  }
  
  .download-button:hover::before {
    background-color: rgba(255, 255, 255, .8);
  }
  
  .download-button:focus {
    outline: none;
  }
  
  .download-button:focus::before {
    background-color: white;
  }
  
  .download-button:active::before {
    background-color: grey;
  }
  
  .download-button[disabled] {
    color: rgba(0, 0, 0, 0.38);
    background-color: rgba(0, 0, 0, 0.12);
    box-shadow: none;
    cursor: unset;
    pointer-events: none;
  }
  
  .hidden {
    display: none;
  }
  