/* POS print: hide scanner, show only cart and receipt */
@media print {
  #scanner-panel,
  .navbar,
  .nav-tabs,
  #checkout-btn,
  #print-receipt-btn,
  #clear-cart-btn,
  #manual-input,
  #manual-add-btn,
  .btn-close,
  .alert {
    display: none !important;
  }
  #cart-panel {
    width: 100% !important;
    max-width: 100% !important;
  }
  #print-receipt {
    display: block !important;
  }
}

/* Slightly tighter table on mobile */
@media (max-width: 576px) {
  .table td, .table th {
    padding: 0.4rem 0.5rem;
    font-size: 0.85rem;
  }
}

/* Card hover lift */
.card {
  transition: box-shadow 0.15s ease;
}
