.state-empty,
.state-error,
.state-loading {
    align-items: center;
    color: var(--adjaf-text-muted);
    display: flex;
    justify-content: center;
    min-height: 160px;
    text-align: center;
}

.data-toolbar {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
}

.data-card {
    background: var(--adjaf-surface);
    border: 1px solid var(--adjaf-border);
    border-radius: var(--adjaf-radius-md);
    box-shadow: var(--adjaf-shadow-sm);
}

.status-badge {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 600;
    gap: 0.35rem;
    line-height: 1;
    padding: 0.35rem 0.65rem;
}

.status-badge.success {
    background: #dcfce7;
    color: #166534;
}

.status-badge.warning {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.danger {
    background: #fee2e2;
    color: #991b1b;
}

