body {
    padding-top: 86px;
}

form.htmx-request button {
    display: none;
}

footer small {
    font-size: 0.5rem;
}

.pagealert--fade {
    animation: fade-out 3000ms;
    animation-fill-mode: forwards;
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }
    99% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        display: none;
    }
}

/* Htmx
-------------------------------------------------- */
.htmx-indicator {
    display: none;
    opacity: 0;
}
.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
    display: inline-block;
    opacity: 1;
}
