/* Doplňkové styly nad Tailwind CDN */

.htmx-indicator {
  display: none;
}
.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
  display: inline-flex;
}
#loading.htmx-indicator {
  display: none;
}
.htmx-request #loading.htmx-indicator,
#loading.htmx-request.htmx-indicator {
  display: block;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

button[disabled] {
  opacity: .6;
  cursor: not-allowed;
}

html {
  scroll-behavior: smooth;
}
