/* EmptyState — dashed variant.
 * Used when a table or list is empty and we want to invite the user to
 * create the first item. Muted dashed border, mono copy, calm palette. */

.cp-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 1rem;
  text-align: center;
}

.cp-empty-state--dashed {
  border: 1px dashed var(--color-text-secondary);
  border-radius: var(--radius-md, 4px);
  background: transparent;
  color: var(--color-text-secondary);
  font-family: var(--font-family-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3px;
}

.cp-empty-state__icon {
  display: block;
  width: 3rem;
  height: 3rem;
  margin-inline: auto;
  flex: none;
  color: var(--color-text-tertiary);
}

.cp-empty-state--dashed .cp-empty-state__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.25rem;
}

.cp-empty-state__title {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium, 500);
  color: var(--color-text-primary);
  text-transform: lowercase;
  letter-spacing: 0.3px;
}

.cp-empty-state__description {
  margin: 0.25rem 0 0;
  max-width: 40ch;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.cp-empty-state__actions {
  margin-top: 1rem;
}
