// Custom Meta Fields — list view styles

.wse-cmf-row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  border: none;
  border-bottom: 1px solid $gray-100;
  cursor: pointer;
  text-align: left;
  transition: background $transition-fast;

  &:last-child { border-bottom: none; }
  &:hover { background: $gray-50; }

  @include focus-ring($offset: -2px);
}

.wse-cmf-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border-radius: $radius-pill;
  font-size: $font-size-xs;
  font-weight: 500;
  line-height: 1.4;
}

.wse-cmf-empty-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 40px;
}

.wse-cmf-empty-illustration {
  display: block;
  width: 200px;
  margin: 0 auto 24px;
}

.wse-cmf-empty-title {
  margin: 0 0 8px;
  font-size: $font-size-lg;
  font-weight: 700;
  color: $color-text-primary;
  line-height: 1.4;
}

.wse-cmf-empty-desc {
  margin: 0 0 28px;
  font-size: $font-size-base;
  color: $color-text-muted;
  line-height: 1.6;
}

