/* .progress-bar {
    height: 3px;
    width: 0;
    background-color: #152235;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: width 1s ease; /* Adjust the duration (1s) as needed */


#spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(255, 255, 255, 0.6); */
    z-index: 1000;
}

.loader {
    /* border: 4px solid #152235;
    border-top: 4px solid #152235;
    background-color: #152235;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; */
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
}

.htmx-indicator{
    display: none;
    transition: opacity 500ms ease-in;
}
.htmx-request .htmx-indicator{
    display: flex;
    opacity:1
}
.htmx-request.htmx-indicator{
    display: flex;
    opacity:1
}