/* Minimal placeholders for lazy-loaded charts — matches dark hub chart stages */
.pollsmax-lazy-chart-host .pollsmax-chart-skeleton {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: 4px;
    background: linear-gradient(
        110deg,
        rgba(30, 41, 59, 0.35) 0%,
        rgba(51, 65, 85, 0.5) 45%,
        rgba(30, 41, 59, 0.35) 90%
    );
    background-size: 200% 100%;
    animation: pollsmax-chart-skeleton-shimmer 1.4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pollsmax-chart-skeleton-shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.pollsmax-lazy-chart-host .sleek-chart-stage {
    position: relative;
}

.pollsmax-lazy-map-host {
    position: relative;
    min-height: 280px;
}

.pollsmax-lazy-map-host .pollsmax-map-skeleton {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #94a3b8;
    background: rgba(15, 23, 42, 0.35);
    pointer-events: none;
}

.pollsmax-lazy-map-host:not(.pollsmax-lazy-pending) .pollsmax-map-skeleton {
    display: none;
}

.pollsmax-lazy-section-host.pollsmax-lazy-pending {
    min-height: 120px;
}

.pollsmax-lazy-section-host.pollsmax-lazy-pending::before {
    content: 'Loading…';
    display: block;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: #94a3b8;
}
