/* Ergaenzende Stile fuer das AKV-CMS (Tailwind uebernimmt den Rest) */

html { -webkit-text-size-adjust: 100%; }
body { font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; }

/* Touch-freundliche Kacheln (Kasse / Verkauf) */
.pos-tile {
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}
.pos-tile:active { transform: scale(0.97); }

/* Fehlerton-Flash */
@keyframes flashError { 0%,100% { background-color: transparent; } 30% { background-color: #fecaca; } }
.flash-error { animation: flashError 0.6s ease; }
@keyframes flashOk { 0%,100% { background-color: transparent; } 30% { background-color: #bbf7d0; } }
.flash-ok { animation: flashOk 0.6s ease; }

/* Tabellen */
.table-wrap { overflow-x: auto; }

/* Druck: nur den Beleg zeigen */
@media print {
    .no-print { display: none !important; }
    body { background: #fff !important; }
}
