.blank-state {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid var(--color-grey-light, #ddd);
}

.blank-state__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--background-color, #f3f4f6);
  border-radius: 50%;
  color: #6b7280;

  & svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }
}

.blank-state__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.blank-state__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color, #111827);
  margin: 0;
  line-height: 1.4;
}

.blank-state__description {
  font-size: 1.25rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.blank-state__action {
  margin-top: 0.75rem;
}
