/* ============================================================
   Avery 48660 / 48860 Label Sheet
   1" x 2-5/8" — 30 labels (3 x 10)
   ============================================================ */

.label-empty-message {
  color: #ffffff !important;
}

/* ===== SHEET LAYOUT ===== */
.label-sheet {
  display: grid;
  grid-template-columns: repeat(3, 2.625in);
  grid-auto-rows: 1in;
  column-gap: 0.125in;
  row-gap: 0;
  padding-top: 0.5in;
  padding-left: 0.1875in;
  padding-right: 0.1875in;
  width: 8.5in;
  box-sizing: border-box;
}

/* ===== INDIVIDUAL LABEL ===== */
.print-label,
.farm-label {
  width: 2.625in;
  height: 1in;
  box-sizing: border-box;
  padding: 0.05in 0.07in;
  overflow: hidden;
  background: #ffffff !important;
  color: #111111 !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10pt;
  line-height: 1.05;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/* ===== FARM LOGO ===== */
.farm-label-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.02in;
}

.farm-label-logo img {
  max-height: 0.28in;
  max-width: 2.3in;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ===== STRAIN ===== */
.farm-label-strain {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 10pt;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

/* ===== FOOTER (DATE + BAG) ===== */
.farm-label-footer {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 10pt;
  white-space: nowrap;
  margin-top: 0.02in;
}

/* ===== PRINT GUARANTEES ===== */
@media print {
  body {
    margin: 0;
  }

  .print-label,
  .farm-label,
  .label-sheet .print-label {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }
}
``