.htmx-indicator {
    display: none;
}
.htmx-request .htmx-indicator {
    display: inline;
}
.htmx-request.htmx-indicator {
    display: inline;
}

/* Used for icons that should be removed when the request is executing */
.htmx-nonindicator {
    display: inline;
}
.htmx-request .htmx-nonindicator {
    display: none;
}
.htmx-request.htmx-nonindicator {
    display: none;
}

/* Delete transition */
.on-delete-fade.htmx-swapping {
    opacity: 0;
    transition: opacity 200ms ease-out;
}
