/* =========================================================
   Object Workbench-specific CSS
   Contains only Object Workbench projection tabs, overview, and output filter UI.
   Shared table body/header/action/selection CSS belongs to shared/table_editor.css.
   ========================================================= */

/* Object type tabs: object-specific projection tabs, not the shared Workbench tool toolbar. */
.object-workbench-generate-form [data-object-type-tabs] {
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(148, 163, 184, 0.30);
  border-radius: 999px;
  background: rgba(241, 245, 249, 0.95);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.05);
}

.object-workbench-generate-form [data-object-type-tabs] .workbench-editing-toolbar__tab {
  position: relative;
  padding: 6px 13px;
  color: #56637a;
  font-weight: 600;
  line-height: 1.15;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.object-workbench-generate-form [data-object-type-tabs] .workbench-editing-toolbar__tab[data-object-type="all"] {
  margin-right: 8px;
}

.object-workbench-generate-form [data-object-type-tabs] .workbench-editing-toolbar__tab[data-object-type="all"]::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -7px;
  width: 1px;
  height: 60%;
  background: rgba(148, 163, 184, 0.42);
}

.object-workbench-generate-form [data-object-type-tabs] .workbench-editing-toolbar__tab:hover {
  color: #1f2937;
  background: rgba(226, 232, 240, 0.82);
}

.object-workbench-generate-form [data-object-type-tabs] .workbench-editing-toolbar__tab:focus-visible {
  outline: 2px solid rgba(99, 102, 241, 0.42);
  outline-offset: 2px;
}

.object-workbench-generate-form [data-object-type-tabs] .workbench-editing-toolbar__tab.is-active {
  color: #111827;
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.56);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  font-weight: 650;
  transform: translateY(-1px);
}

.object-workbench-generate-form [data-object-type-tabs] .workbench-editing-toolbar__tab.is-active[data-object-type="all"] {
  color: #1e1b4b;
  background: linear-gradient(180deg, #ffffff, #eef2ff);
  border-color: rgba(99, 102, 241, 0.38);
}

.object-workbench-overview {
  border: 1px solid rgba(203, 213, 225, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
  margin-top: 0;
  min-height: 240px;
}

.object-workbench-overview__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.object-workbench-overview__title {
  margin: 0;
  font-size: 1rem;
  color: #0f172a;
}

.object-workbench-overview__note {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 0.86rem;
}

.object-workbench-overview__total {
  min-width: 96px;
  border: 1px solid rgba(99, 102, 241, 0.22);
  border-radius: 12px;
  background: rgba(238, 242, 255, 0.72);
  padding: 8px 10px;
  text-align: right;
}

.object-workbench-overview__total-label {
  display: block;
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 700;
}

.object-workbench-overview__total strong {
  display: block;
  color: #312e81;
  font-size: 1.35rem;
  line-height: 1.1;
}

.object-workbench-overview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.object-workbench-overview__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.82);
  padding: 11px 12px;
}

.object-workbench-overview__label {
  color: #475569;
  font-size: 0.86rem;
  font-weight: 700;
}

.object-workbench-overview__count {
  color: #0f172a;
  font-size: 1.1rem;
}

.object-workbench-output-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.object-workbench-toolbar-panel-stack {
  align-items: center;
  flex-wrap: wrap;
  row-gap: 6px;
}


.object-workbench-target-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.object-workbench-target-label {
  color: #334155;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
}

.object-workbench-output-filter__item {
  gap: 5px;
}

/* Typed Dataset Table Workbench structure: Object Workbench Action Strip / Type Tabs / Local Edit Toolbar. */
.typed-dataset-work-surface {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.typed-dataset-action-strip {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(203, 213, 225, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.typed-dataset-action-strip__primary,
.typed-dataset-action-strip__target {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.typed-dataset-action-strip__target {
  flex: 0 1 auto;
  justify-content: flex-start;
}

.typed-dataset-type-tabs {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  flex-wrap: wrap;
}

.typed-dataset-local-toolbar {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.82);
}

.typed-dataset-local-toolbar .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .typed-dataset-action-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .typed-dataset-action-strip__target {
    justify-content: flex-start;
    width: 100%;
  }
}


/* Object Editing Toolbar: Policy-compatible toolbar shell, separate from Action Strip. */
.object-workbench-editing-toolbar {
  align-self: stretch;
  padding: 8px 10px 6px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-bottom-color: rgba(203, 213, 225, 0.92);
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.94) 0%, rgba(241, 245, 249, 0.86) 100%);
}

.object-workbench-editing-toolbar .workbench-editing-toolbar__head {
  padding-bottom: 0;
}

.object-workbench-editing-toolbar .workbench-editing-toolbar__always-panels {
  padding: 5px 8px;
}

.object-workbench-editing-toolbar .table-tool-toolbar__corner-anchor {
  right: 8px;
}

.object-workbench-editing-toolbar .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Object Generate top controls: Action Strip and projection tabs side-by-side. */
.object-workbench-top-control-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.object-workbench-top-control-row__action {
  flex: 0 0 auto;
  min-width: 0;
}

.object-workbench-top-control-row__tabs {
  display: flex;
  align-items: stretch;
  flex: 1 1 auto;
  min-width: 0;
}

.object-workbench-top-control-row .typed-dataset-action-strip {
  height: 100%;
  min-height: 40px;
  padding: 6px 10px;
  gap: 8px;
}

.object-workbench-top-control-row .object-workbench-target-group {
  gap: 8px;
}

.object-workbench-top-control-row .object-workbench-output-filter {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  grid-auto-rows: minmax(16px, auto);
  column-gap: 8px;
  row-gap: 2px;
  align-items: center;
}

.object-workbench-top-control-row .object-workbench-output-filter__item {
  gap: 4px;
  line-height: 1.05;
  white-space: nowrap;
}

.object-workbench-top-control-row .object-workbench-output-filter__item input {
  margin: 0;
}

.object-workbench-top-control-row [data-object-type-tabs] {
  align-self: stretch;
  width: 100%;
  justify-content: flex-start;
  gap: 0;
  padding: 5px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.object-workbench-top-control-row [data-object-type-tabs] .workbench-editing-toolbar__tab {
  border-radius: 0;
  margin: 0;
  padding: 6px 10px;
  white-space: nowrap;
}

.object-workbench-top-control-row [data-object-type-tabs] .workbench-editing-toolbar__tab:first-child {
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}

.object-workbench-top-control-row [data-object-type-tabs] .workbench-editing-toolbar__tab:last-child {
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}

.object-workbench-top-control-row [data-object-type-tabs] .workbench-editing-toolbar__tab[data-object-type="all"] {
  margin-right: 0;
}

.object-workbench-top-control-row [data-object-type-tabs] .workbench-editing-toolbar__tab[data-object-type="all"]::after {
  display: none;
}

.object-workbench-generate-form .typed-dataset-work-surface {
  gap: 0;
  margin-bottom: 8px;
}

.object-workbench-generate-form .object-workbench-editing-toolbar {
  margin-top: 0;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.object-workbench-generate-form .table-workbench__table-wrap {
  margin-top: 0;
}

.object-workbench-generate-form .table-editor-wrap--workbench-main .table-editor-scroll {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

@media (max-width: 1180px) {
  .object-workbench-top-control-row {
    flex-direction: column;
    gap: 0;
  }

  .object-workbench-top-control-row__action,
  .object-workbench-top-control-row__tabs {
    width: 100%;
  }

  .object-workbench-top-control-row .object-workbench-output-filter {
    grid-template-columns: repeat(2, max-content);
  }
}


/* Object Generate top controls refinement: separate output target and edit target clearly. */
.object-workbench-generate-form .object-workbench-top-control-row {
  gap: 8px;
  align-items: stretch;
}

.object-workbench-generate-form .object-workbench-top-control-row__action,
.object-workbench-generate-form .object-workbench-top-control-row__tabs {
  min-height: 44px;
}

.object-workbench-generate-form .object-workbench-top-control-row .typed-dataset-action-strip,
.object-workbench-generate-form .object-workbench-top-control-row__tabs {
  border: 1px solid rgba(203, 213, 225, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.object-workbench-generate-form .object-workbench-top-control-row__tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  overflow: hidden;
}

.object-workbench-type-tabs-title {
  flex: 0 0 auto;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.object-workbench-generate-form .object-workbench-target-label {
  display: none;
}

.object-workbench-generate-form .object-workbench-top-control-row [data-object-type-tabs] {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.46);
  border-radius: 10px;
  background: rgba(248, 250, 252, 0.96);
  box-shadow: inset 0 1px 1px rgba(15, 23, 42, 0.04);
  overflow-x: auto;
  scrollbar-width: thin;
}

.object-workbench-generate-form .object-workbench-top-control-row [data-object-type-tabs] .workbench-editing-toolbar__tab {
  box-sizing: border-box;
  flex: 0 0 auto;
  min-height: 30px;
  border: 1px solid rgba(148, 163, 184, 0.36);
  border-left-width: 0;
  border-top-width: 0;
  border-bottom-width: 0;
  border-radius: 0;
  margin: 0;
  padding: 5px 10px;
  background: transparent;
  color: #475569;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
  box-shadow: none;
  transform: none;
}

.object-workbench-generate-form .object-workbench-top-control-row [data-object-type-tabs] .workbench-editing-toolbar__tab:first-child {
  border-top-left-radius: 9px;
  border-bottom-left-radius: 9px;
}

.object-workbench-generate-form .object-workbench-top-control-row [data-object-type-tabs] .workbench-editing-toolbar__tab:last-child {
  border-right: 0;
  border-top-right-radius: 9px;
  border-bottom-right-radius: 9px;
}

.object-workbench-generate-form .object-workbench-top-control-row [data-object-type-tabs] .workbench-editing-toolbar__tab:hover {
  background: rgba(226, 232, 240, 0.58);
  color: #1e293b;
}

.object-workbench-generate-form .object-workbench-top-control-row [data-object-type-tabs] .workbench-editing-toolbar__tab.is-active {
  z-index: 1;
  color: #1d4ed8;
  background: rgba(255, 255, 255, 0.96);
  border-right-color: rgba(37, 99, 235, 0.32);
  box-shadow: inset 0 -2px 0 #2563eb, inset 0 0 0 1px rgba(37, 99, 235, 0.22);
  font-weight: 650;
  transform: none;
}

.object-workbench-generate-form .object-workbench-top-control-row [data-object-type-tabs] .workbench-editing-toolbar__tab.is-active + .workbench-editing-toolbar__tab {
  border-left-color: rgba(37, 99, 235, 0.42);
}

.object-workbench-generate-form .object-workbench-top-control-row .object-workbench-output-filter {
  grid-template-columns: repeat(3, max-content);
  column-gap: 10px;
  row-gap: 2px;
}

.object-workbench-generate-form .object-workbench-top-control-row .object-workbench-output-filter__item {
  color: #475569;
  font-size: 0.82rem;
  font-weight: 600;
}

.object-workbench-generate-form .object-workbench-editing-toolbar {
  margin-top: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.object-workbench-generate-form .object-workbench-editing-toolbar .workbench-editing-toolbar__always-panels {
  border-top-left-radius: 0;
}

@media (max-width: 1180px) {
  .object-workbench-generate-form .object-workbench-top-control-row__tabs {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

/* Object Workbench section rows. */
#object-table .table-editor__section-row {
  background: linear-gradient(90deg, rgba(238, 242, 255, 0.98), rgba(248, 250, 252, 0.98));
}

#object-table .table-editor__section-cell {
  position: sticky;
  left: 0;
  z-index: 5;
  padding: 0;
  border-top: 1px solid rgba(99, 102, 241, 0.24);
  border-bottom: 1px solid rgba(100, 116, 139, 0.22);
  border-left: 3px solid rgba(99, 102, 241, 0.42);
  background: linear-gradient(90deg, rgba(238, 242, 255, 0.98), rgba(248, 250, 252, 0.98));
}

#object-table .table-editor__section-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 6px 14px;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

#object-table .table-editor__section-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

#object-table .table-editor__section-toggle::before {
  content: "▾";
  margin-right: 6px;
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1;
  transition: transform 0.16s ease;
}

#object-table .table-editor__section-row.is-section-collapsed .table-editor__section-toggle::before {
  transform: rotate(-90deg);
}

#object-table .table-editor__section-toggle:hover .table-editor__section-number,
#object-table .table-editor__section-toggle:focus-visible .table-editor__section-number {
  background: rgba(79, 70, 229, 0.14);
  color: #3730a3;
}

#object-table .table-editor__section-toggle:focus-visible {
  outline: 2px solid rgba(79, 70, 229, 0.35);
  outline-offset: 2px;
}

#object-table .table-editor__section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 20px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.14);
  color: #4338ca;
  font-size: 0.76rem;
  font-weight: 700;
}

#object-table .table-editor__section-label-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #1e293b;
  font-weight: 700;
  cursor: text;
}

#object-table .table-editor__section-label-input {
  min-width: 220px;
  max-width: min(520px, 42vw);
  height: 28px;
  padding: 3px 8px;
  border: 1px solid rgba(79, 70, 229, 0.42);
  border-radius: 8px;
  background: #ffffff;
  color: #1e293b;
  font: inherit;
  font-weight: 600;
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

#object-table .table-editor__section-row.is-section-label-editing .table-editor__section-hint {
  color: #6366f1;
}

#object-table .table-editor__section-hint {
  margin-left: auto;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 600;
}

#object-table .table-editor__section-row.is-section-collapsed .table-editor__section-cell {
  background: linear-gradient(90deg, rgba(224, 231, 255, 0.98), rgba(248, 250, 252, 0.98));
}

/* Typed Dataset Table Workbench standard: Import result card. */
.typed-dataset-import-summary {
  display: grid;
  gap: 10px;
  margin: 0 0 10px;
  border: 1px solid rgba(147, 197, 253, 0.72);
  border-radius: 16px;
  background:
    radial-gradient(circle at top left, rgba(219, 234, 254, 0.92), rgba(219, 234, 254, 0) 36%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(239, 246, 255, 0.92));
  padding: 14px 16px 15px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.typed-dataset-import-summary[hidden] {
  display: none;
}

.typed-dataset-import-summary__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.typed-dataset-import-summary__title {
  color: #2563eb;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.typed-dataset-import-summary__content {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.typed-dataset-import-summary__message {
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.5;
}

.typed-dataset-import-summary__detail {
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.55;
}

.typed-dataset-import-summary__detail[hidden] {
  display: none;
}

.typed-dataset-import-summary__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid rgba(96, 165, 250, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #2563eb;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: 0;
}

.typed-dataset-import-summary__close:hover {
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.42);
}

.typed-dataset-import-summary__close:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.36);
  outline-offset: 2px;
}


.object-validate-run-button {
  width: 100%;
  justify-content: center;
  margin-top: 0.75rem;
  min-height: 2.4rem;
  font-weight: 700;
}

.object-validation-stale-notice[hidden] {
  display: none !important;
}

.object-validation-stale-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(180, 83, 9, 0.24);
  border-radius: 0.75rem;
  background: rgba(251, 191, 36, 0.12);
  color: #92400e;
  font-size: 0.82rem;
  line-height: 1.5;
}

.object-validate-rerun-button {
  flex: 0 0 auto;
  min-height: 2rem;
  border-color: rgba(180, 83, 9, 0.32);
  color: #92400e;
  font-weight: 700;
}

.object-validate-rerun-button:hover {
  border-color: rgba(180, 83, 9, 0.5);
  background: rgba(255, 255, 255, 0.72);
}

/* Object Validate row issue highlighting. */
.workbench-panel--main #object-table tbody tr.is-row-error td:not(.table-editor__rownum):not(.table-editor__actions):not(.table-editor__end-gutter) {
  background: rgba(255, 255, 255, 0.98);
}

.workbench-panel--main #object-table tbody tr.is-row-error:hover td:not(.table-editor__rownum):not(.table-editor__actions):not(.table-editor__end-gutter) {
  background: rgba(254, 242, 242, 0.92);
}

.workbench-panel--main #object-table tbody tr.is-row-warning td:not(.table-editor__rownum):not(.table-editor__actions):not(.table-editor__end-gutter) {
  background: rgba(255, 255, 255, 0.98);
}

.workbench-panel--main #object-table tbody tr.is-row-warning:hover td:not(.table-editor__rownum):not(.table-editor__actions):not(.table-editor__end-gutter) {
  background: rgba(255, 251, 235, 0.92);
}

.workbench-panel--main #object-table .table-editor__rownum.is-row-error:not(.is-row-dragging):not(.is-row-drop-target):not(.is-row-drop-target-before):not(.is-row-drop-target-after) {
  background: #ffffff;
  box-shadow: inset 2px 0 0 rgba(239, 68, 68, 0.72), 1px 0 0 rgba(226, 232, 240, 0.88);
}

.workbench-panel--main #object-table .table-editor__actions.is-row-error:not(.is-row-dragging):not(.is-row-drop-target):not(.is-row-drop-target-before):not(.is-row-drop-target-after) {
  box-shadow: inset 1px 0 0 rgba(239, 68, 68, 0.18);
}

.workbench-panel--main #object-table .table-editor__rownum.is-row-warning:not(.is-row-dragging):not(.is-row-drop-target):not(.is-row-drop-target-before):not(.is-row-drop-target-after) {
  background: #ffffff;
  box-shadow: inset 2px 0 0 rgba(245, 158, 11, 0.62), 1px 0 0 rgba(226, 232, 240, 0.88);
}

.workbench-panel--main #object-table .table-editor__actions.is-row-warning:not(.is-row-dragging):not(.is-row-drop-target):not(.is-row-drop-target-before):not(.is-row-drop-target-after) {
  box-shadow: inset 1px 0 0 rgba(245, 158, 11, 0.16);
}

.workbench-panel--main #object-table tbody tr.is-row-error:hover .table-editor__rownum:not(.is-row-dragging):not(.is-row-drop-target):not(.is-row-drop-target-before):not(.is-row-drop-target-after) {
  background: #fff7f7;
  box-shadow: inset 2px 0 0 rgba(239, 68, 68, 0.72), 1px 0 0 rgba(226, 232, 240, 0.88);
}

.workbench-panel--main #object-table tbody tr.is-row-error:hover .table-editor__actions:not(.is-row-dragging):not(.is-row-drop-target):not(.is-row-drop-target-before):not(.is-row-drop-target-after) {
  background: rgba(254, 242, 242, 0.82);
  box-shadow: inset 1px 0 0 rgba(239, 68, 68, 0.18);
}

.workbench-panel--main #object-table tbody tr.is-row-warning:hover .table-editor__rownum:not(.is-row-dragging):not(.is-row-drop-target):not(.is-row-drop-target-before):not(.is-row-drop-target-after) {
  background: #fffaf0;
  box-shadow: inset 2px 0 0 rgba(245, 158, 11, 0.62), 1px 0 0 rgba(226, 232, 240, 0.88);
}

.workbench-panel--main #object-table tbody tr.is-row-warning:hover .table-editor__actions:not(.is-row-dragging):not(.is-row-drop-target):not(.is-row-drop-target-before):not(.is-row-drop-target-after) {
  background: rgba(255, 251, 235, 0.84);
  box-shadow: inset 1px 0 0 rgba(245, 158, 11, 0.16);
}

.object-review-context,
.object-review-section-summary {
  display: grid;
  gap: 0.5rem;
}

.object-review-context .workbench-kv-list dd,
.object-review-section-summary .workbench-kv-list dd {
  overflow-wrap: anywhere;
  text-align: right;
}

/* Field State disabled presentation: conditionally unavailable Object fields. */
.object-workbench-generate-form .table-editor td.is-field-state-disabled-cell {
  background: #f9fafb;
}

.object-workbench-generate-form .table-editor .table-editor__input.is-field-state-disabled,
.object-workbench-generate-form .table-editor select.table-editor__input.is-field-state-disabled,
.object-workbench-generate-form .table-editor input.table-editor__input.is-field-state-disabled {
  background: #f3f4f6;
  color: #9ca3af;
  border-color: #d1d5db;
  cursor: not-allowed;
  opacity: 1;
  box-shadow: none;
}

.object-workbench-generate-form .table-editor .table-editor__input.is-field-state-disabled:hover,
.object-workbench-generate-form .table-editor .table-editor__input.is-field-state-disabled:focus {
  background: #f3f4f6;
  color: #9ca3af;
  border-color: #d1d5db;
  outline: none;
  box-shadow: none;
}

.object-workbench-generate-form .table-editor select.table-editor__input.is-field-state-disabled {
  color: #9ca3af;
}
