.htmx-indicator {
    opacity: 0;
    visibility: hidden;
    transition: opacity 400ms ease-in, visibility 400ms ease-in;
}

.htmx-request.htmx-indicator {
    /* display: flex !important; */
    opacity: 1;
    visibility: visible;
    background-color: rgba(0, 0, 0, .4);
    /* transition: opacity 200ms ease-out; */
}

.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: white; */
    /* Adjust to match your page background */
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: rgba(0, 0, 0, 0.8); */
    z-index: 9999;
}

#main-content {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
#main-content.show {
    opacity: 1;
}
/* .preloader-section {
    display: none;
} */

.preloader-section svg {
    width: 200px;
    /* Adjust size as needed */
    height: 100px;
}
