  body {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 1rem;
    font-weight: normal;
    min-height: 100vh;
    max-width: 1200px;
  }

  header,
  footer {
    height: 2rem;
  }

  header {
    margin-bottom: 2rem;
  }

  .flex {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
  }

  aside {
    margin-right: 2rem;
  }

  main {
    flex: 1;
  }

  img.search-image {
    max-width: 200px;
    max-height: 200px;
  }

  @media (max-width: 600px) {
    img.search-image {
      max-width: 90px;
      max-height: 90px;
    }
  }

  @media (max-width: 600px) {
    .flex {
      max-width: 100%;
    }

    .flex table {
      width: 100%;
      table-layout: fixed;
    }
  }

  tr:has(.out-of-stock) td {
    background-color: rgba(111, 120, 135, 0.0375);
  }

  .out-of-stock div {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .subscribe-email-form {
    display: flex !important;
    flex-direction: row;
    gap: 0.5rem;
  }