/* Pozycjosprawdzator — globalne style (poza Tailwindem) */

/* Body z subtelnym watermarkiem kolb (Dundersztyc-laboratorium) */
body {
  background-color: #FAFAFB;
  background-image: url('/static/beaker-bg.svg');
  background-repeat: repeat;
  background-size: 320px 320px;
  background-attachment: fixed;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Naglowki w Fredoce (zaokraglony, playful science vibe) */
h1, h2, h3, .font-display {
  font-family: 'Fredoka', 'Inter', system-ui, sans-serif;
  letter-spacing: -0.01em;
}

/* Print — czysto, bez watermarku */
@media print {
  body { background: white !important; background-image: none !important; }
  .print\:hidden { display: none !important; }
  main { max-width: 100% !important; padding: 0 !important; }
  table { font-size: 10pt; }
  thead { display: table-header-group; }
  tr { page-break-inside: avoid; }
  a { color: #000; text-decoration: none; }
}

/* Scrollbar */
* { scrollbar-width: thin; scrollbar-color: #cbd5e1 transparent; }
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
*::-webkit-scrollbar-thumb:hover { background: #94a3b8; }
