/* Print styles for reservation confirmation */
@media print {
  /* Hide navigation and non-essential elements */
  .no-print,
  header,
  footer,
  nav,
  button,
  a[href],
  .bg-stone-100 {
    display: none !important;
  }
  
  /* Reset body styling */
  body {
    background: white !important;
    color: black !important;
    font-size: 12pt;
    line-height: 1.5;
    margin: 0;
    padding: 0;
  }
  
  /* Container adjustments */
  .min-h-screen {
    min-height: auto !important;
  }
  
  .flex.items-center.justify-center {
    display: block !important;
  }
  
  .max-w-md {
    max-width: 100% !important;
    width: 100% !important;
  }
  
  /* Main content box */
  .bg-white {
    border: 2px solid black !important;
    padding: 20px !important;
    margin: 0 !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }
  
  /* Typography */
  h1, h2, h3 {
    color: black !important;
    margin-bottom: 10px !important;
  }
  
  .text-2xl {
    font-size: 18pt !important;
  }
  
  .text-lg {
    font-size: 14pt !important;
  }
  
  .text-primary-orange,
  .text-charcoal,
  .text-neutral-600 {
    color: black !important;
  }
  
  /* Reservation number highlight */
  .bg-stone-100 {
    display: inline-block !important;
    background: white !important;
    border: 2px solid black !important;
    padding: 10px 20px !important;
    margin: 10px 0 !important;
  }
  
  .reservation-number {
    font-size: 20pt !important;
    font-weight: bold !important;
  }
  
  /* Hide interactive elements */
  .inline-flex.items-center.justify-center,
  svg {
    display: none !important;
  }
  
  /* Section borders */
  .border-t {
    border-top: 1px solid black !important;
    margin: 15px 0 !important;
    padding-top: 15px !important;
  }
  
  /* Lists and details */
  .space-y-2 > p,
  .space-y-1 > p {
    margin: 5px 0 !important;
  }
  
  /* Contact info at bottom */
  .text-sm {
    font-size: 10pt !important;
    margin-top: 20px !important;
    padding-top: 15px !important;
    border-top: 1px solid black !important;
  }
  
  /* Show print-only elements */
  .print-only {
    display: block !important;
  }
  
  /* Page setup */
  @page {
    margin: 1in;
    size: A4;
  }
  
  /* Ensure text is black */
  * {
    color: black !important;
    background: transparent !important;
  }
  
  /* Links as plain text */
  a {
    text-decoration: none !important;
  }
  
  /* Tables for product list */
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
  }
  
  th, td {
    border: 1px solid black;
    padding: 5px;
    text-align: left;
  }
  
  th {
    font-weight: bold;
  }
}