/* Receipt Theme Layout (Aesthetics for Cashier thermal paper) */
.bg-light-gray {
  background-color: #f1f5f9;
}

.thermal-receipt {
  background-color: #ffffff;
  color: #000000;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  line-height: 1.4;
  border: 1px solid #e2e8f0;
}

.receipt-header {
  text-align: center;
  margin-bottom: 14px;
}

.receipt-header h4 {
  font-size: 16px;
  font-weight: 800;
}

.receipt-header p {
  font-size: 10px;
  color: #4b5563;
}

.receipt-divider {
  border-top: 1px dashed #000000;
  margin: 10px 0;
}

.receipt-meta {
  font-size: 11px;
  margin-bottom: 10px;
}

.receipt-meta-row {
  display: flex;
  justify-content: space-between;
}

.receipt-items {
  margin-bottom: 10px;
}

.receipt-item-row {
  margin-bottom: 6px;
}

.receipt-item-details {
  display: flex;
  justify-content: space-between;
}

.receipt-item-qty {
  font-size: 11px;
  color: #4b5563;
}

.receipt-totals {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.receipt-total-row {
  display: flex;
  justify-content: space-between;
}

.receipt-total-row.bold {
  font-weight: 700;
  font-size: 13px;
}

.receipt-footer {
  text-align: center;
  margin-top: 16px;
  font-size: 11px;
}
