/* FOUNDER_OPERATOR_COMPONENT_OWNER_FILES_PROMOTION_V1B
   Extracted from STATIC_APP/pages/root_app_shell.html.
   Promoted static style owner.
   Root shell inline copy remains live until cutover is proven.
   This CSS file intentionally excludes literal <style> wrappers. */

      .celestine-request-trigger {
        position: fixed;
        right: 28px;
        bottom: 36px;
        z-index: 125;
        width: 62px;
        height: 62px;
        border: 1px solid rgba(224,190,104,0.84);
        border-radius: 999px;
        background:
          radial-gradient(circle at 30% 24%, rgba(255,236,180,0.18), transparent 34%),
          rgba(6,10,18,0.74)
          url('/static/bubble%20ccs.png') center center / 82% 82% no-repeat;
        color: #fff2d6;
        cursor: pointer;
        font-size: 0;
        color: transparent;
        font: inherit;
        font-size: 24px;
        font-weight: 900;
        box-shadow:
          inset 0 1px 0 rgba(255,236,180,0.22),
          inset 0 -1px 0 rgba(120,85,28,0.18),
          0 18px 44px rgba(0,0,0,0.40),
          0 0 30px rgba(224,190,104,0.18);
        backdrop-filter: blur(7px);
        -webkit-backdrop-filter: blur(7px);
      }

      .celestine-request-trigger.attention {
        animation: celestineRequestPulse 1.8s ease-in-out infinite;
      }

      .celestine-request-badge {
        position: absolute;
        top: -5px;
        right: -5px;
        min-width: 22px;
        height: 22px;
        padding: 0 6px;
        border-radius: 999px;
        border: 1px solid rgba(255,236,180,0.78);
        background: rgba(56,84,150,0.92);
        color: #fff2d6;
        display: none;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 900;
        line-height: 1;
        box-shadow: 0 0 18px rgba(224,190,104,0.20), inset 0 1px 0 rgba(255,236,180,0.20);
      }

      .celestine-request-badge.visible {
        display: inline-flex;
      }


      .celestine-request-panel {
        position: fixed;
        right: 28px;
        bottom: 112px;
        z-index: 124;
        width: min(390px, calc(100vw - 34px));
        display: none;
        border: 1px solid rgba(224,190,104,0.76);
        border-radius: 24px;
        background:
          radial-gradient(circle at 18% 4%, rgba(224,190,104,0.14), transparent 34%),
          rgba(6,10,18,0.91);
        box-shadow:
          inset 0 1px 0 rgba(255,236,180,0.18),
          inset 0 -1px 0 rgba(120,85,28,0.18),
          0 22px 60px rgba(0,0,0,0.48),
          0 0 0 1px rgba(120,85,28,0.12);
        backdrop-filter: blur(9px);
        -webkit-backdrop-filter: blur(9px);
        overflow: hidden;
      }

      .celestine-request-panel.open {
        display: block;
      }

      .celestine-request-head {
        padding: 14px 16px 10px 16px;
        border-bottom: 1px solid rgba(224,190,104,0.24);
        color: #fff2d6;
        font-size: 15.5px;
        font-weight: 900;
        letter-spacing: 0.025em;
        text-shadow: 0 1px 12px rgba(0,0,0,0.68);
          cursor: move;
          user-select: none;
          touch-action: none;
      }

      .celestine-request-body {
        padding: 14px 16px 13px 16px;
        color: #fff1df;
        font-size: 13.4px;
        line-height: 1.45;
        text-shadow: 0 1px 8px rgba(0,0,0,0.54);
      }

      .celestine-request-context {
        margin-top: 10px;
        padding: 10px 11px;
        border: 1px solid rgba(224,190,104,0.28);
        border-radius: 15px;
        background: rgba(10,18,40,0.30);
        color: #e8d2bc;
        font-size: 12.6px;
        line-height: 1.38;
      }

      .celestine-request-actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
        padding: 0 16px 15px 16px;
      }

      .celestine-request-action {
        min-height: 34px;
        border: 1px solid rgba(224,190,104,0.60);
        border-radius: 999px;
        background: rgba(10,14,24,0.28);
        color: #f7eadb;
        cursor: pointer;
        font: inherit;
        font-size: 12.5px;
        padding: 7px 11px;
      }

      .celestine-request-action.primary {
        border-color: rgba(224,190,104,0.82);
        background: rgba(56,84,150,0.28);
        color: #fff2d6;
        font-weight: 800;
      }


      /* FOUNDER_OPERATOR_CONSOLE_SHELL_V1
         Founder/operator-only shell for the existing global request lane.
         This is UI structure only: no backend execution, no public exposure, no container mutation. */
      html body .celestine-request-panel {
        /* FOUNDER_OPERATOR_CONSOLE_NATIVE_RESIZE_UNPIN_V1
           Native browser resize needs inline width/height to win while dragging.
           Keep resize-only; do not reintroduce custom motion/resize JS. */
        /* FOUNDER_OPERATOR_CONSOLE_RESIZE_ONLY_V1
           Resize-only recovery: restore simple browser-native resize first.
           Do not add custom motion, custom resize grips, or direct drag JS here. */
        /* FOUNDER_OPERATOR_CONSOLE_COMPACT_FIT_V2
           Fit the founder console inside the real desktop viewport.
           Keep header reachable, bottom actions visible, and scroll inside cards instead of letting the whole shell fall behind the shelf/taskbar. */
        width: min(1040px, calc(100vw - 72px));
        height: min(560px, calc(100vh - 190px));
        min-height: 430px !important;
        max-height: min(560px, calc(100vh - 190px)) !important;
        /* FOUNDER_OPERATOR_CONSOLE_MOTION_ROLLBACK_V1B
           Roll back the overbuilt direct-motion layer.
           Keep the lower spawn, but use real left/top coordinates so the original drag path does not snap. */
        left: max(14px, calc((100vw - min(1040px, calc(100vw - 72px))) / 2)) !important;
        right: auto !important;
        top: 92px !important;
        bottom: auto !important;
        transform: none !important;
        resize: both !important;
        overflow: auto !important;
        box-sizing: border-box !important;
border-radius: 28px !important;
        background:
          radial-gradient(circle at 12% 6%, rgba(255,236,180,0.16), transparent 30%),
          radial-gradient(circle at 86% 12%, rgba(56,84,150,0.18), transparent 34%),
          linear-gradient(135deg, rgba(8,12,24,0.96), rgba(5,8,15,0.93)) !important;
        box-shadow:
          inset 0 1px 0 rgba(255,236,180,0.18),
          inset 0 -1px 0 rgba(120,85,28,0.18),
          0 28px 76px rgba(0,0,0,0.58),
          0 0 0 1px rgba(224,190,104,0.14) !important;
      }

      /* FOUNDER_OPERATOR_CONSOLE_RESIZE_HANDLE_ONLY_V1
         Resize-only owner for the founder console.
         This is intentionally NOT the CCS/global window manager and does not touch movement. */
      html body #celestineRequestPanel .founder-operator-console-resize-handle-v1 {
        position: absolute !important;
        right: 8px !important;
        bottom: 8px !important;
        width: 30px !important;
        height: 30px !important;
        z-index: 1000004 !important;
        cursor: nwse-resize !important;
        touch-action: none !important;
        pointer-events: auto !important;
        border-right: 4px solid rgba(224,190,104,0.96) !important;
        border-bottom: 4px solid rgba(224,190,104,0.96) !important;
        border-radius: 0 0 16px 0 !important;
        background: linear-gradient(135deg, transparent 45%, rgba(224,190,104,0.22) 46%, rgba(224,190,104,0.08) 100%) !important;
      }

      html body #celestineRequestPanel .founder-operator-console-resize-handle-v1::before {
        content: "" !important;
        position: absolute !important;
        right: 7px !important;
        bottom: 7px !important;
        width: 15px !important;
        height: 15px !important;
        border-right: 2px solid rgba(255,236,180,0.95) !important;
        border-bottom: 2px solid rgba(255,236,180,0.95) !important;
        pointer-events: none !important;
      }

      html body .celestine-request-panel.open {
        display: flex !important;
        flex-direction: column !important;
      }

      html body .founder-operator-console-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 10px 14px 8px 14px;
        border-bottom: 1px solid rgba(224,190,104,0.24);
        cursor: move;
        user-select: none;
        touch-action: none;
      }

      html body .founder-operator-console-kicker {
        color: #e4c16a;
        font-size: 10.5px;
        font-weight: 950;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        opacity: 0.92;
      }

      html body .founder-operator-console-title {
        margin-top: 4px;
        color: #fff2d6;
        font-size: 17px;
        line-height: 1.06;
        font-weight: 950;
        text-shadow: 0 1px 16px rgba(0,0,0,0.72);
      }

      html body .founder-operator-console-subtitle {
        margin-top: 2px;
        color: rgba(247,234,219,0.74);
        font-size: 11.4px;
        line-height: 1.28;
      }

      html body .founder-operator-console-status-row {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        flex-wrap: wrap;
      }

      html body .founder-operator-console-pill {
        min-height: 25px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid rgba(224,190,104,0.42);
        border-radius: 999px;
        padding: 4px 9px;
        background: rgba(10,18,40,0.38);
        color: #fff2d6;
        font-size: 11px;
        font-weight: 850;
        white-space: nowrap;
      }

      html body .founder-operator-console-body {
        flex: 1;
        min-height: 0;
        display: grid;
        grid-template-columns: minmax(190px, 0.72fr) minmax(420px, 1.72fr) minmax(230px, 0.86fr);
        gap: 10px;
        padding: 10px;
        overflow: hidden;
      }

      html body .founder-operator-console-card {
        min-height: 0;
        border: 1px solid rgba(224,190,104,0.24);
        border-radius: 22px;
        background:
          radial-gradient(circle at 16% 8%, rgba(224,190,104,0.08), transparent 32%),
          rgba(6,10,18,0.42);
        box-shadow:
          inset 0 1px 0 rgba(255,236,180,0.08),
          0 12px 28px rgba(0,0,0,0.20);
        overflow: hidden;
      }

      html body .founder-operator-console-card-head {
        padding: 8px 10px 7px 10px;
        border-bottom: 1px solid rgba(224,190,104,0.16);
        color: #fff2d6;
        font-size: 12px;
        font-weight: 950;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      html body .founder-operator-console-lanes {
        padding: 9px;
        display: flex;
        flex-direction: column;
        gap: 7px;
        overflow-y: auto;
        max-height: calc(100% - 38px);
      }

      html body .founder-operator-lane {
        width: 100%;
        min-height: 31px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        border: 1px solid rgba(224,190,104,0.20);
        border-radius: 15px;
        background: rgba(10,18,40,0.26);
        color: #f7eadb;
        font: inherit;
        font-size: 12.5px;
        font-weight: 850;
        cursor: pointer;
        padding: 7px 8px;
        text-align: left;
      }

      html body .founder-operator-lane.active {
        border-color: rgba(224,190,104,0.66);
        background: rgba(56,84,150,0.25);
        color: #fff2d6;
        box-shadow: 0 0 18px rgba(224,190,104,0.08);
      }

      html body .founder-operator-lane-count {
        min-width: 24px;
        min-height: 22px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        border: 1px solid rgba(224,190,104,0.34);
        background: rgba(6,10,18,0.42);
        color: #fff2d6;
        font-size: 11px;
        font-weight: 950;
      }

      html body .founder-operator-console-main {
        display: flex;
        flex-direction: column;
        min-height: 0;
      }

      html body .founder-operator-active-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        padding: 8px 10px 0 10px;
      }

      html body .founder-operator-meta-chip {
        border: 1px solid rgba(224,190,104,0.24);
        border-radius: 999px;
        background: rgba(10,18,40,0.28);
        color: rgba(247,234,219,0.78);
        font-size: 10.8px;
        font-weight: 800;
        padding: 4px 8px;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      html body .founder-operator-console-main .celestine-request-body {
        flex: 1;
        min-height: 0;
        padding: 9px !important;
        overflow: hidden;
        display: flex;
        flex-direction: column;
      }

      html body #celestineRequestText {
        color: #fff2d6;
        font-size: 15px;
        line-height: 1.32;
        font-weight: 900;
        padding: 9px 10px;
        border: 1px solid rgba(224,190,104,0.24);
        border-radius: 16px;
        background: rgba(10,18,40,0.30);
      }

      html body #celestineRequestContext {
        margin-top: 9px;
        color: rgba(247,234,219,0.78);
        font-size: 12.5px;
        line-height: 1.4;
        padding: 10px 11px;
        border: 1px solid rgba(224,190,104,0.16);
        border-radius: 16px;
        background: rgba(6,10,18,0.26);
      }

      html body #celestineRequestDetails {
        /* FOUNDER_OPERATOR_CENTER_LANE_WORKSPACE_OWNER_V1
           Let the selected lane workspace use the center height instead of being capped
           like the old small queue-card detail box. */
        flex: 1;
        min-height: 250px;
        max-height: none !important;
        margin-top: 9px !important;
        padding: 11px !important;
        border: 1px solid rgba(224,190,104,0.18);
        border-radius: 16px;
        background: rgba(3,6,12,0.42);
        color: #f7eadb;
        font-size: 11.2px !important;
        line-height: 1.38 !important;
        overflow: auto !important;
      }

      html body .founder-operator-console-main .celestine-request-actions {
        display: flex;
        justify-content: flex-end;
        gap: 8px;
        padding: 8px 10px 9px 10px;
        border-top: 1px solid rgba(224,190,104,0.16);
      }

      html body .founder-operator-side-body {
        padding: 8px;
        display: flex;
        flex-direction: column;
        gap: 9px;
        overflow-y: auto;
        max-height: calc(100vh - 220px);
      }

      html body .founder-operator-stat-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
      }

      html body .founder-operator-stat {
        border: 1px solid rgba(224,190,104,0.18);
        border-radius: 15px;
        background: rgba(10,18,40,0.24);
        padding: 9px;
      }

      html body .founder-operator-stat-value {
        color: #fff2d6;
        font-size: 17px;
        line-height: 1;
        font-weight: 950;
      }

      html body .founder-operator-stat-label {
        margin-top: 4px;
        color: rgba(247,234,219,0.66);
        font-size: 10.4px;
        line-height: 1.18;
        text-transform: uppercase;
        letter-spacing: 0.06em;
      }

      html body .founder-operator-console-action {
        min-height: 35px;
        border: 1px solid rgba(224,190,104,0.36);
        border-radius: 15px;
        background: rgba(10,18,40,0.30);
        color: #f7eadb;
        cursor: pointer;
        font: inherit;
        font-size: 12.2px;
        font-weight: 850;
        padding: 7px 9px;
        text-align: left;
      }

      html body .founder-operator-console-action.primary {
        border-color: rgba(224,190,104,0.68);
        background: rgba(56,84,150,0.25);
        color: #fff2d6;
      }

      html body .founder-operator-console-action:disabled {
        opacity: 0.54;
        cursor: not-allowed;
      }

      /* FOUNDER_OPERATOR_CONSOLE_COPY_PROPOSAL_V1
         Single copy affordance for the active founder/operator review.
         Lives in the center gap; does not touch motion, resize, CCS, or global window ownership. */
      html body .founder-operator-copy-row {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        padding: 8px 0 0 0;
        flex-wrap: wrap;
      }

      html body .founder-operator-copy-status {
        color: rgba(247,234,219,0.68);
        font-size: 11px;
        line-height: 1.25;
      }

      html body .founder-operator-operator-note {
        color: rgba(247,234,219,0.70);
        font-size: 11.2px;
        line-height: 1.38;
        border: 1px solid rgba(224,190,104,0.14);
        border-radius: 15px;
        background: rgba(6,10,18,0.25);
        padding: 9px;
      }

      /* FOUNDER_OPERATOR_RIGHT_PANEL_HEALTH_CHECK_LOCAL_HOME_V1D
         Right-panel output surface for component-local operator diagnostics only.
         Does not imply backend execution, provider restart, bash, mutation, or approval authority. */
      html body .founder-operator-control-output {
        border: 1px solid rgba(224,190,104,0.18);
        border-radius: 15px;
        background: rgba(6,10,18,0.32);
        padding: 9px;
        color: rgba(247,234,219,0.76);
        font-size: 11px;
        line-height: 1.34;
      }

      html body .founder-operator-control-output[data-mode="ok"] {
        border-color: rgba(134,220,172,0.34);
      }

      html body .founder-operator-control-output[data-mode="warn"] {
        border-color: rgba(224,190,104,0.38);
      }

      html body .founder-operator-control-output-title {
        color: #fff2d6;
        font-size: 11.4px;
        font-weight: 900;
        margin-bottom: 6px;
      }

      html body .founder-operator-control-output-body {
        display: grid;
        gap: 4px;
      }

      html body .founder-operator-control-output-line {
        overflow-wrap: anywhere;
      }


      @media (max-width: 980px) {
        html body .celestine-request-panel {
          inset: 10px !important;
          width: auto !important;
          height: auto !important;
          min-height: 0 !important;
          max-height: calc(100vh - 20px) !important;
          left: 10px !important;
          top: 10px !important;
          bottom: auto !important;
          right: auto !important;
          transform: none !important;
          resize: none !important;
        }

        html body .founder-operator-console-body {
          grid-template-columns: 1fr !important;
          overflow-y: auto;
        }

        html body .founder-operator-console-lanes,
        html body .founder-operator-side-body {
          max-height: none;
        }
      }


/* FOUNDER_OPERATOR_REVIEWS_WORKSPACE_CARDS_V1 */
html body .founder-operator-workspace-cards-v1 {
  display: none;
  gap: 12px;
  margin-top: 10px;
  min-height: 0;
}

html body .founder-operator-workspace-hero-v1 {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 14px;
  background: rgba(9, 12, 22, 0.72);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(190px, 0.85fr);
  gap: 12px;
}

html body .founder-operator-workspace-hero-v1 h3,
html body .founder-operator-workspace-card-v1 h4 {
  margin: 3px 0 6px;
}

html body .founder-operator-workspace-hero-v1 p,
html body .founder-operator-workspace-card-v1 p {
  margin: 0;
  opacity: 0.78;
  font-size: 12px;
  line-height: 1.35;
}

html body .founder-operator-section-kicker-v1 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  opacity: 0.64;
  font-weight: 700;
}

html body .founder-operator-workspace-stats-v1 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

html body .founder-operator-workspace-stats-v1 div,
html body .founder-operator-workspace-card-v1,
html body .founder-operator-action-card-v1,
html body .founder-operator-selected-action-v1 {
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
}

html body .founder-operator-workspace-stats-v1 div {
  padding: 9px;
}

html body .founder-operator-workspace-stats-v1 strong {
  display: block;
  font-size: 18px;
}

html body .founder-operator-workspace-stats-v1 span {
  display: block;
  font-size: 10px;
  opacity: 0.7;
}

html body .founder-operator-workspace-grid-v1 {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(220px, 0.82fr);
  gap: 12px;
  min-height: 0;
}

html body .founder-operator-workspace-card-v1 {
  padding: 12px;
  min-width: 0;
}

html body .founder-operator-workspace-card-v1.wide {
  grid-row: span 3;
}

html body .founder-operator-action-list-v1,
html body .founder-operator-mini-list-v1 {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  max-height: 310px;
  overflow: auto;
  padding-right: 4px;
}

html body .founder-operator-action-card-v1 {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 9px;
  padding: 9px;
}

html body .founder-operator-action-card-v1.selected {
  outline: 1px solid rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.08);
}

html body .founder-operator-action-card-index-v1 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  font-size: 11px;
  font-weight: 800;
  height: 24px;
  width: 24px;
}

html body .founder-operator-action-card-body-v1,
html body .founder-operator-selected-action-v1 {
  display: grid;
  gap: 4px;
  min-width: 0;
}

html body .founder-operator-action-card-body-v1 strong,
html body .founder-operator-selected-action-v1 strong {
  font-size: 12px;
  line-height: 1.25;
}

html body .founder-operator-action-card-body-v1 span,
html body .founder-operator-selected-action-v1 span,
html body .founder-operator-mini-row-v1 small {
  font-size: 10.5px;
  opacity: 0.72;
  overflow-wrap: anywhere;
}

html body .founder-operator-selected-action-v1 {
  padding: 10px;
}

html body .founder-operator-selected-action-v1.warning {
  opacity: 0.78;
}

html body .founder-operator-metric-line-v1,
html body .founder-operator-mini-row-v1 {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 6px 0;
  font-size: 11px;
}

html body .founder-operator-metric-line-v1 strong {
  white-space: nowrap;
}

@media (max-width: 780px) {
  html body .founder-operator-workspace-hero-v1,
  html body .founder-operator-workspace-grid-v1 {
    grid-template-columns: 1fr;
  }

  html body .founder-operator-workspace-card-v1.wide {
    grid-row: auto;
  }
}



/* FOUNDER_OPERATOR_REVIEWS_CATEGORY_LOCAL_ACTIONS_V2 */
html body .founder-operator-category-strip-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

html body .founder-operator-category-card-v2 {
  text-align: left;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
  color: inherit;
  padding: 10px;
  display: grid;
  gap: 4px;
  cursor: pointer;
}

html body .founder-operator-category-card-v2.active {
  outline: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.085);
}

html body .founder-operator-category-card-v2 strong {
  font-size: 12px;
}

html body .founder-operator-category-card-v2 span,
html body .founder-operator-category-card-v2 small {
  font-size: 10.5px;
  opacity: 0.72;
}

html body button.founder-operator-action-card-v1 {
  width: 100%;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

html body .founder-operator-selected-action-v2 {
  display: grid;
  gap: 8px;
}

html body .founder-operator-selected-action-v2 h4 {
  margin: 3px 0 0;
  line-height: 1.25;
}

html body .founder-operator-selected-meta-v2 {
  display: grid;
  gap: 4px;
  font-size: 10.5px;
  opacity: 0.76;
  overflow-wrap: anywhere;
}

html body .founder-operator-local-actions-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}

html body .founder-operator-local-actions-v2 .celestine-request-action {
  min-height: 30px;
}

@media (max-width: 980px) {
  html body .founder-operator-category-strip-v2 {
    grid-template-columns: 1fr;
  }
}



/* FOUNDER_OPERATOR_REVIEWS_WORKBENCH_AREA_CARDS_V3 */
html body .founder-operator-workspace-cards-v1 {
  overflow: auto;
  padding-right: 4px;
}

html body .founder-operator-category-strip-v2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

html body .founder-operator-category-card-v2,
html body button.founder-operator-action-card-v1 {
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

html body button.founder-operator-action-card-v1 {
  background: rgba(10, 13, 24, 0.74) !important;
  border: 1px solid rgba(216, 186, 112, 0.24) !important;
  border-radius: 14px !important;
  color: rgba(255, 244, 216, 0.95) !important;
  box-shadow: none !important;
}

html body button.founder-operator-action-card-v1:hover,
html body button.founder-operator-action-card-v1.selected {
  background: rgba(32, 29, 42, 0.88) !important;
  border-color: rgba(235, 202, 126, 0.56) !important;
}

html body .founder-operator-action-list-v1 {
  max-height: 245px;
}

html body .founder-operator-selected-action-v2 {
  border: 1px solid rgba(216, 186, 112, 0.24);
  border-radius: 14px;
  background: rgba(10, 13, 24, 0.58);
  padding: 10px;
}

html body .founder-operator-readonly-pill-v3 {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 10.5px;
  opacity: 0.78;
}

@media (max-width: 980px) {
  html body .founder-operator-category-strip-v2 {
    grid-template-columns: 1fr;
  }
}



/* FOUNDER_OPERATOR_REVIEWS_STATE_AWARE_ACTIONS_V4 */
html body .founder-operator-local-actions-v2 .celestine-request-action {
  max-width: 100%;
  white-space: normal;
  line-height: 1.15;
}

html body .founder-operator-selected-action-v2 h4,
html body .founder-operator-action-card-body-v1 strong,
html body .founder-operator-action-card-body-v1 span,
html body .founder-operator-selected-meta-v2 span,
html body .founder-operator-mini-row-v1 span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

html body .founder-operator-action-list-v1,
html body .founder-operator-mini-list-v1 {
  overflow-x: hidden;
}



/* FOUNDER_OPERATOR_REVIEWS_PAGINATION_WORDING_V6 */
html body .founder-operator-review-pager-v6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 10px 0 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 214, 150, 0.18);
  border-radius: 12px;
  background: rgba(18, 14, 10, 0.42);
}

html body .founder-operator-review-pager-v6 span {
  font-size: 0.78rem;
  color: rgba(255, 239, 216, 0.76);
  overflow-wrap: anywhere;
}

html body .founder-operator-review-pager-v6 div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

html body .founder-operator-review-pager-v6 button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

html body .founder-operator-action-list-v1 {
  max-height: 430px;
}


/* FOUNDER_OPERATOR_REVIEWS_CARD_LIST_EXPAND_V1
   Use the available left-column vertical space before forcing review-card scrolling.
   CSS-only: no review semantics, queue behavior, approval flow, or backend ownership changes. */
html body .founder-operator-workspace-card-v1.wide {
  max-height: min(920px, calc(100vh - 260px)) !important;
  overflow-y: auto !important;
}

html body .founder-operator-action-list-v1 {
  max-height: min(760px, calc(100vh - 390px)) !important;
  overflow-y: auto !important;
}

html body .founder-operator-workspace-grid-v1 {
  align-items: start;
}
