.empty-state {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 56px 28px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.empty-state-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(0, 200, 212, 0.2);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
}

.empty-state-icon svg {
  width: 34px;
  height: 34px;
}

.empty-state h2 {
  font-size: 24px;
  margin-bottom: 0;
}

.empty-state p {
  max-width: 520px;
  font-size: 16px;
}

.collection-with-empty-state:has(tbody tr) > .empty-state {
  display: none;
}

@media (max-width: 640px) {
  .empty-state {
    min-height: 300px;
    padding: 40px 20px;
  }
}
