body {
      font-family: sans-serif;
      text-align: center;
      background: #f0f0f0;
      margin: 0;
      padding: 20px;
    }
    .no-print {
      margin-bottom: 20px;
    }
    .sticker-button {
      background-color: transparent;
      border: none;
      padding: 5px;
      cursor: pointer;
      margin: 5px;
    }
    .sticker-button img {
      width: 50px;
      height: 50px;
    }
    .print-button {
      margin: 5px;
      padding: 8px 12px;
      font-size: 14px;
      cursor: pointer;
    }
    .page-container {
      width: 8.5in;
      height: 11in;
      margin: 20px auto;
      background: #fff;
      position: relative;
      border: 1px solid #000;
      box-sizing: border-box;
    }
    .sticker-wrapper {
      position: absolute;
      box-sizing: border-box;
    }
    .sticker-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }
    .remove-button {
      position: absolute;
      top: 2px;
      right: 2px;
      background: rgba(255, 0, 0, 0.8);
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 18px;
      height: 18px;
      font-size: 12px;
      cursor: pointer;
      line-height: 16px;
      padding: 0;
    }
    @media print {
      .no-print {
        display: none;
      }
      .page-container {
        border: none;
        margin: 0;
      }
      .remove-button {
        display: none;
      }
    }