/* Ocultar en vista normal de pantalla */
.print-only, #printable-ticket {
  display: none;
}

@media print {
  /* Ocultar todo el sitio al imprimir excepto el ticket */
  html, body {
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    width: 100% !important;
    height: auto !important;
  }

  body * {
    visibility: hidden;
  }
  
  #printable-ticket, #printable-ticket * {
    visibility: visible !important;
  }

  #printable-ticket {
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 78mm !important; /* Optimizado para 80mm / 3" como 2connet 2C-POS80-01 */
    max-width: 78mm !important;
    margin: 0 !important;
    padding: 2mm 3mm !important;
    background: #ffffff !important;
    color: #000000 !important;
    font-family: 'Courier New', Courier, monospace !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    font-weight: 900 !important;
  }

  @page {
    margin: 0 !important;
    size: 80mm auto !important;
  }
}

/* Estilos de la plantilla del Ticket */
.ticket-container {
  width: 78mm;
  max-width: 100%;
  margin: 0 auto;
  background: #ffffff;
  color: #000000;
  padding: 6px 8px;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.35;
}

.ticket-header {
  text-align: center;
  border-bottom: 2px dashed #000;
  padding-bottom: 6px;
  margin-bottom: 8px;
}

.ticket-header .title {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ticket-jaula-box,
.ticket-peso-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0;
  padding: 5px 0;
  border-top: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
}

.ticket-jaula-num,
.ticket-peso-num {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2px;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 4px 0;
  font-size: 14px;
}

.ticket-label {
  font-weight: 900;
}

.ticket-val {
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.ticket-traba-val {
  font-size: 17px;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
  word-break: break-word;
  max-width: 75%;
}

.ticket-posta-block {
  margin: 14px 0 10px 0;
  padding-top: 6px;
}

.ticket-posta-line {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #000;
  height: 20px;
}

.ticket-footer {
  text-align: center;
  border-top: 2px dashed #000;
  padding-top: 8px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 900;
}
