.loading-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 2000;
}

.loading-overlay.is-visible {
    display: flex;
}

.loading-overlay__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #4c4c4c;
    font-weight: 600;
}

.loading-overlay__content img {
    width: 120px;
    height: auto;
}

