/* shipping-label.css - Estilos para Guía de Envío estilo Mercado Envíos */

.shipping-guide-container {
  width: 600px;
  background: white;
  border: 2px solid #000;
  padding: 0;
  margin: 20px auto;
  font-family: "Inter", Arial, sans-serif;
  color: #000;
  box-sizing: border-box;
}

.guide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #000;
  padding: 10px 20px;
  background: #f8f9fa;
}

.guide-logo {
  height: 40px;
  font-weight: 900;
  font-size: 24px;
  color: #000;
}

.guide-title {
  text-align: right;
}

.guide-title h1 {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.guide-body {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-bottom: 2px solid #000;
}

.guide-barcode-section {
  border-right: 2px solid #000;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.barcode-placeholder {
  width: 120px;
  height: 120px;
  background: #fff;
}

.order-id-label {
  font-size: 12px;
  font-weight: bold;
  margin-top: 10px;
  font-family: "Courier New", monospace;
}

.guide-info-section {
  padding: 20px;
  display: grid;
  grid-template-rows: auto auto;
  gap: 20px;
}

.info-block {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: bold;
  color: #666;
  margin-bottom: 4px;
}

.info-value {
  font-size: 14px;
  line-height: 1.4;
}

.info-value.bold {
  font-weight: 800;
  font-size: 16px;
}

.guide-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 15px 20px;
  background: #f8f9fa;
}

.agency-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agency-logo-img {
  height: 30px;
  filter: grayscale(100%);
}

.shipping-type-tag {
  background: #000;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
  align-self: center;
  text-align: center;
}

/* Ocultar todo menos la guía al imprimir */
@media print {
  body * {
    visibility: hidden;
  }
  #shipping-guide-print-area,
  #shipping-guide-print-area * {
    visibility: visible;
  }
  #shipping-guide-print-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
  .no-print {
    display: none !important;
  }
}
