/**
 * .ww-empty-state — the platform's Zero-Data Principle made visible.
 * Every list/table/score that has no data uses this instead of an empty
 * div or a fabricated placeholder value.
 */

.ww-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 2.5rem 1.5rem;
    color: var(--wp--preset--color--muted);
}

.ww-empty-state__icon {
    width: 32px;
    height: 32px;
    opacity: 0.6;
}

.ww-empty-state__title {
    font-weight: 600;
    color: var(--wp--preset--color--body);
}

.ww-empty-state__description {
    font-size: var(--wp--preset--font-size--small);
    max-width: 32ch;
}
