@keyframes rotating {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.htmx-request .rotating,
.htmx-request.rotating {
    animation: rotating 1s linear infinite;
}

.fade-on-hover:hover {
    transition: all 250ms ease-in-out;
    opacity: 0;
}