@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  body {
    @apply bg-gray-100 text-slate-900;
  }
}

@media print {
  .no-print { display: none !important; }
  .print-only { display: block !important; }
  body { background-color: white; }
  @page { margin: 0; size: auto; }
}