/* Reiterhof Manager – custom styles (Tailwind handles the rest) */
[x-cloak] { display: none !important; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #94a3b8; border-radius: 3px; }

/* Invoice PDF styles override */
@media print {
  nav, footer, .no-print, button, [type="submit"] { display: none !important; }
  body { background: white; }
}

/* Progress bar custom */
.progress-bar-custom { transition: width 0.3s ease; }

/* Fade transitions for Alpine */
[x-transition\:enter] { transition-property: opacity, transform; }
[x-transition\:enter-start] { opacity: 0; transform: translateY(-4px); }
[x-transition\:enter-end] { opacity: 1; transform: translateY(0); }
