textarea, input[type="text"], input[type="password"] {
  font-family: inherit;
}
.htmx-indicator { display: none; }
.htmx-request .htmx-indicator { display: inline; }
.htmx-indicator.block-indicator { display: none; }
.htmx-request .htmx-indicator.block-indicator { display: block; }
.htmx-indicator.block-indicator.htmx-request { display: block; }

/* Barre de progression indéterminée */
@keyframes progress-slide {
  0%   { left: -35%; width: 35%; }
  60%  { left: 100%; width: 35%; }
  100% { left: 100%; width: 35%; }
}
.progress-indeterminate {
  position: relative;
  overflow: hidden;
  height: 3px;
  background: #e5e7eb;
  border-radius: 9999px;
}
.progress-indeterminate::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  background: #1f2937;
  border-radius: 9999px;
  animation: progress-slide 1.6s ease-in-out infinite;
}
