.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.empty-state h2 {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--color-text-muted);
    font-size: var(--font-size-base);
    margin-bottom: 20px;
}

/* Inline "nothing here" text for an empty section or list. */
.no-data {
    font-size: var(--font-size-base);
    color: var(--color-text-faint);
    font-style: italic;
}