/* Module: components/loading.css — Empty / Loading */
/* --------------------------------------------------------------------------
   15. Empty / Loading States
   -------------------------------------------------------------------------- */
.and-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--and-space-xl) var(--and-space-md);
    gap: var(--and-space-sm);
    color: var(--and-text-muted);
    text-align: center;
}

.and-empty__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--and-radius-xl);
    background: var(--and-bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--and-text-muted);
    margin-bottom: var(--and-space-xs);
}

.and-empty__text {
    font-size: 0.875rem;
}

/* Skeleton loader */
.and-skeleton {
    background: linear-gradient(90deg, var(--and-bg-card) 25%, var(--and-bg-card-alt) 50%, var(--and-bg-card) 75%);
    background-size: 200% 100%;
    animation: and-skeleton-wave 1.5s ease-in-out infinite;
    border-radius: var(--and-radius-sm);
}

@keyframes and-skeleton-wave {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}
