.loading-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loading-overlay.is-active {
    display: flex;
}

.loading-overlay img {
    width: 96px;
    height: 96px;
    animation: loading-overlay-pulse 1.4s ease-in-out infinite;
}

.loading-overlay p {
    color: #fff;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

@keyframes loading-overlay-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.75; }
}
