#htmx-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: #f6a723;
    z-index: 99999;
    opacity: 0;
    transition: width 0.25s ease, opacity 0.2s ease;
    pointer-events: none;
}

#htmx-progress.is-active {
    opacity: 1;
}

#htmx-progress.is-done {
    width: 100% !important;
    opacity: 0;
    transition: width 0.2s ease, opacity 0.4s ease 0.15s;
}
