/* Reusable empty state — icon, copy, CTA, contextual help card */

.dg-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem 1.75rem;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.dg-empty-state-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: hsla(200, 95%, 50%, 0.1);
  border: 1px solid hsla(200, 95%, 50%, 0.22);
}

.dg-empty-state-icon img,
.dg-empty-state-icon svg {
  width: 32px;
  height: 32px;
}

.dg-empty-state h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.dg-empty-state-desc {
  margin: 0 0 1.25rem;
  max-width: 28rem;
  font-size: 0.88rem;
  color: var(--text-muted, rgba(255, 255, 255, 0.5));
  line-height: 1.55;
}

.dg-empty-state-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.dg-empty-state-help {
  width: 100%;
  max-width: 32rem;
  margin-top: 0.5rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
  text-align: left;
  font-size: 0.84rem;
  color: var(--text-muted, rgba(255, 255, 255, 0.55));
  line-height: 1.5;
}

.dg-empty-state-help strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text, #fff);
  font-size: 0.82rem;
}

.dg-empty-state-help a {
  color: var(--accent, hsl(200, 95%, 50%));
  font-weight: 600;
  text-decoration: none;
}

.dg-empty-state-help a:hover {
  text-decoration: underline;
}

.dg-empty-state--left {
  align-items: flex-start;
  text-align: left;
}

.dg-empty-state--left .dg-empty-state-actions {
  justify-content: flex-start;
}
