.module-empty-state {
  border: 1px dashed rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.03);
}

.module-empty-state__content {
  max-width: 72ch;
}

.module-empty-state__message {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.7);
}

.module-empty-state__message a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (prefers-color-scheme: dark) {
  .module-empty-state {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
  }
  .module-empty-state__message {
    color: rgba(255, 255, 255, 0.75);
  }
}
