/*
 * kati24.com — Styles additionnels
 * TailwindCSS est charge via CDN dans head.html
 * Ce fichier contient uniquement les overrides necessaires
 */

/* Selection style */
::selection {
  background-color: rgba(101, 163, 13, 0.15);
  color: inherit;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Print */
@media print {
  header, footer, nav, .no-print { display: none !important; }
  .prose { max-width: 100%; }
  body { background: white !important; }
}
