body {
    font-family: 'Instrument Sans', sans-serif;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }

  .container {
    border-radius: var(--layout-radius-rounded-medium, 12px);
    background: #FAFAFB;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
    padding: 40px 24px 24px;
  }

  h2 {
    margin-bottom: 6px;
    color: #171717;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
  }

  .description {
    color: var(--colors-content-content2-foreground, #27272A);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    max-width: 416px;
    margin: 0 auto 21px;
  }
  .description span {
    font-style: italic;
  }

  #shopifyForm {
    max-width: 416px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  input[type="text"] {
    width: 80%;
  }
  #shopifyForm input[type="text"] {
    border-radius: 14px;
    border: 1px solid var(--colors-base-default-200, #E4E4E7);
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    padding: 10px 12px;
  }
  #shopifyForm input[type="text"]:focus-visible {
    outline-offset: -2px;
    outline-width: 10px;
    outline-color: #1A19FE;
  }

  button {
    border-radius: 14px;
    border: 1px solid #1A19FE;
    background: var(--Primary-blue, #1A19FE);
    padding: 9.5px 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    cursor: pointer;
  }

  #result {
    max-width: 416px;
    margin: 21px auto;
    font-size: 1.1rem;
    color: #333;
  }

  #result_url {
    font-size: 30px;
  }

  .result-container {
    border-radius: 14px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    padding: 17px;
    display: flex;
    gap: 16px;
    align-items: center;
    width: calc(80% - 6px);
    font-size: 14px;
  }

  .result-container h3 {
    color: #0F172A;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    text-align: left;
  }

  .result-container div div  {
    display: flex;
    gap: 4px;
    align-items: center;
  }
  .result-container div div p {
    color: #0F172A;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
  }
  .result-container div div svg {
    cursor: pointer;
  }

  .result-container.error {
    background: #FFD7D7;
    border: 1px solid #C4C4C4;
  }

  .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
  }

  .loader {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid #ccc;
    border-top: 3px solid #5c6bc0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    vertical-align: middle;
    margin-left: 0.5rem;
  }
  .social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  a {
    text-decoration: none;
  }
  .footer a {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    color: #000;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @media(max-width: 767px){
    .container {
        max-width: 80%;
    }
    #shopifyForm input[type="text"] {
        font-size: 16px;
    }
  }