/* ==========================================================================
   ABM components - Empty states
   ========================================================================== */

.abm-empty,
.abm-empty-state {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 34px 20px;
  border: 1px dashed var(--abm-border-default);
  border-radius: var(--abm-radius-xl);
  background: linear-gradient(180deg, var(--abm-color-bg-soft), var(--abm-color-surface));
  color: var(--abm-color-muted);
  text-align: center;
}

.abm-empty-title {
  margin: 0;
  color: var(--abm-color-text);
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.25;
}

.abm-empty-copy {
  max-width: 560px;
  margin: 0;
  color: var(--abm-color-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.abm-empty-state--compact,
.abm-empty--compact {
  padding: 22px 16px;
  border-radius: var(--abm-radius-lg);
}

.abm-empty-state__icon,
.abm-empty-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--abm-radius-pill);
  background: rgba(245, 179, 1, 0.14);
  color: var(--abm-color-amber-strong);
  font-weight: 900;
}

.abm-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
