/* KI-Check — App-spezifische Styles (Ergänzung zu Tailwind) */

/* Smooth-Scroll für Anker-Links */
html {
    scroll-behavior: smooth;
}

/* HTMX-Indicator — wird sichtbar, wenn eine HTMX-Anfrage läuft */
.htmx-indicator {
    opacity: 0;
    transition: opacity 200ms ease-in;
}
.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
    opacity: 1;
}

/* Print-Styles: Navigation und Buttons ausblenden */
@media print {
    header, footer, nav, button, .no-print {
        display: none !important;
    }
}
