.printable {
  background: white;
  position: absolute;
  inset: 0;
  display: none;
  place-content: center;

  .label {
    border: 1px solid black;
    border-radius: 10px;
    padding: 1rem;
    max-width: 500px;
    margin: auto;
  }

  .logo{
    height: 75px;
    text-align: center;
    img{
      height: 100%;
      width: auto;
    }
  }

  .barcode {
    display: grid;
    justify-content: center;
    text-align: center;
    img{
      height: 100px;
    }
  }
}

@media print {
  aside, header, footer, main, .no-print, #scanButton {
    display: none !important;
  }

  .printable {
    display: grid;
  }
}