.search-submit-indicator.htmx-request ~ .search-static-label {
    display: none;
}

.loading-container {
    text-align: center;
    animation: pop-in 0.4s ease;
}

.loading-image {
    width: 110px;
    height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.9));
}

@keyframes pop-in {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
