/* Ergaenzende Styles zusaetzlich zu Tailwind. */

/* Sicheren Bereich (Notch) bei der unteren Navigation beruecksichtigen */
nav.fixed {
  padding-bottom: env(safe-area-inset-bottom);
}

/* HTMX: Indikator nur waehrend Request sichtbar */
.htmx-indicator {
  opacity: 0;
  transition: opacity 150ms ease-in;
}
.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
  opacity: 1;
}
