.builder-dashboard-host {
        color-scheme: dark;
        --bg: #040b12;
        --panel: #08131f;
        --panel-2: #0d1c2b;
        --border: rgba(143, 227, 255, 0.14);
        --border-strong: rgba(143, 227, 255, 0.28);
        --text: #e6edf8;
        --muted: #95a9c6;
        --accent: #8fe3ff;
        --accent-2: #00c3ff;
        --danger: #ff6b6b;
        --bin: rgba(255, 107, 107, 0.08);
        --shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
        display: block;
        width: 100%;
        min-width: 0;
        overflow: hidden;
        border: 1px solid rgba(72, 50, 34, 0.16);
        border-radius: 24px;
        box-shadow: 0 20px 48px rgba(59, 31, 10, 0.12);
      }

.builder-dashboard-host,
.builder-dashboard-host * {
        box-sizing: border-box;
      }

.builder-dashboard-host {
        margin: 0;
        min-height: 0;
        background:
          radial-gradient(circle at top left, rgba(0, 195, 255, 0.08), transparent 30%),
          radial-gradient(circle at top right, rgba(9, 22, 36, 0.9), transparent 30%),
          var(--bg);
        color: var(--text);
        font-family: "Segoe UI Variable", "Segoe UI", "Bahnschrift", sans-serif;
      }

.builder-dashboard-host button,
.builder-dashboard-host input,
.builder-dashboard-host textarea,
.builder-dashboard-host select {
        font: inherit;
      }

.builder-dashboard-host a {
        color: var(--accent);
      }

      .app-shell {
        display: grid;
        grid-template-columns: 320px minmax(0, 1fr);
        min-height: 100vh;
        padding-right: 42px;
      }

      .rail {
        border-right: 1px solid var(--border);
        background: rgba(5, 12, 19, 0.76);
        backdrop-filter: blur(18px);
        padding: 22px;
        display: flex;
        flex-direction: column;
        gap: 18px;
      }

      .brand-kicker {
        color: var(--accent);
        font-size: 0.76rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

      .brand-title {
        margin: 0;
        font-size: 2rem;
        line-height: 0.94;
        letter-spacing: -0.05em;
      }

      .brand-copy {
        margin: 0;
        color: var(--muted);
        line-height: 1.5;
        font-size: 0.95rem;
      }

      .panel {
        border: 1px solid var(--border);
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(13, 28, 43, 0.92), rgba(7, 14, 23, 0.98));
        box-shadow: var(--shadow);
      }

      .panel-pad {
        padding: 18px;
      }

      .panel-title {
        margin: 0 0 8px;
        font-size: 1.5rem;
      }

      .panel-copy {
        margin: 0;
        color: var(--muted);
        line-height: 1.45;
        font-size: 0.92rem;
      }

      .new-project-form {
        display: grid;
        gap: 10px;
      }

      .field,
      .textarea,
      .select {
        width: 100%;
        border: 1px solid var(--border);
        background: rgba(3, 11, 18, 0.9);
        color: var(--text);
        border-radius: 14px;
        padding: 12px 13px;
      }

      .textarea {
        min-height: 140px;
        resize: vertical;
        line-height: 1.5;
      }

      .button-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .project-footer-actions {
        display: flex;
        justify-content: flex-end;
      }

      .button {
        border: 1px solid var(--border-strong);
        background: rgba(143, 227, 255, 0.08);
        color: var(--text);
        border-radius: 999px;
        padding: 10px 14px;
        cursor: pointer;
      }

      .button:hover {
        border-color: rgba(143, 227, 255, 0.4);
      }

      .button-accent {
        background: linear-gradient(180deg, rgba(0, 195, 255, 0.22), rgba(0, 121, 184, 0.22));
        color: white;
      }

      .button-danger {
        border-color: rgba(255, 107, 107, 0.28);
        background: rgba(255, 107, 107, 0.08);
      }

      .project-list {
        display: grid;
        gap: 10px;
        max-height: 38vh;
        overflow: auto;
      }

      .project-card {
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 14px;
        background: rgba(6, 16, 25, 0.82);
        cursor: pointer;
      }

      .project-card.active {
        border-color: rgba(143, 227, 255, 0.42);
        background: rgba(10, 28, 42, 0.95);
      }

      .project-name {
        margin: 0 0 6px;
        font-weight: 700;
      }

      .project-meta {
        color: var(--muted);
        font-size: 0.86rem;
      }

      .workspace {
        padding: 22px 28px 22px 22px;
        display: flex;
        flex-direction: column;
        gap: 18px;
      }

      body[data-builder-phase="processed"] .app-shell {
        display: block;
      }

      body[data-builder-phase="processed"] .rail,
      body[data-builder-phase="processed"] .topbar {
        display: none;
      }

      body[data-builder-phase="processed"] .workspace {
        max-width: 1760px;
        margin: 0 auto;
        padding: 24px 42px 24px 24px;
      }

      .topbar {
        display: flex;
        justify-content: space-between;
        gap: 14px;
        align-items: flex-start;
      }

      .topbar h2 {
        margin: 0;
        font-size: clamp(1.6rem, 4vw, 2.8rem);
        line-height: 0.98;
        letter-spacing: -0.05em;
      }

      .topbar-copy {
        margin-top: 10px;
        color: var(--muted);
        max-width: 780px;
        line-height: 1.5;
      }

      .status-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-end;
      }

      .pill {
        border: 1px solid var(--border);
        border-radius: 999px;
        padding: 10px 14px;
        background: rgba(8, 16, 26, 0.88);
        color: var(--accent);
        font-size: 0.88rem;
      }

      .grid {
        display: grid;
        gap: 18px;
      }

      .grid-two {
        grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
      }

      .intake-panel {
        display: flex;
        flex-direction: column;
        min-height: 100%;
      }

      .intake-context-wrap {
        flex: 1 1 auto;
        display: flex;
      }

      .intake-context-wrap .textarea {
        min-height: 320px;
        height: 100%;
        flex: 1 1 auto;
      }

      .upload-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
      }

      .upload-card {
        border: 1px dashed var(--border-strong);
        border-radius: 16px;
        padding: 16px;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 14px;
        background:
          linear-gradient(180deg, rgba(13, 28, 43, 0.52), rgba(7, 14, 23, 0.88)),
          radial-gradient(circle at top, rgba(0, 195, 255, 0.1), transparent 52%);
        transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
      }

      .upload-card.is-drop {
        border-style: solid;
        border-color: rgba(143, 227, 255, 0.62);
        box-shadow: inset 0 0 0 1px rgba(143, 227, 255, 0.24), 0 0 0 1px rgba(143, 227, 255, 0.14);
        transform: translateY(-1px);
      }

      .upload-card--media {
        min-height: 250px;
      }

      .upload-card-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
      }

      .upload-progress {
        margin-top: 12px;
      }

      .upload-progress-track {
        height: 10px;
        border-radius: 999px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.12);
      }

      .upload-progress-fill {
        width: 0%;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, rgba(214, 91, 47, 0.96), rgba(243, 169, 118, 0.96));
        transition: width 120ms linear;
      }

      .upload-progress-label {
        margin-top: 8px;
        color: var(--muted);
        font-size: 0.86rem;
        line-height: 1.35;
      }

      .upload-card h4,
      .summary-list h4 {
        margin: 0 0 6px;
        font-size: 0.98rem;
      }

      .upload-card p,
      .summary-list p {
        margin: 0;
        color: var(--muted);
        line-height: 1.45;
        font-size: 0.9rem;
      }

      .summary-list {
        display: grid;
        gap: 12px;
      }

      .summary-row {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        color: var(--muted);
        font-size: 0.9rem;
      }

      .review-panel[hidden],
      .matterport-panel[hidden],
      .editor[hidden],
      .empty-state[hidden],
      .phase-intake[hidden],
      .phase-processed[hidden] {
        display: none;
      }

      .phase-processed {
        display: grid;
        gap: 18px;
      }

      .processed-topbar {
        display: flex;
        justify-content: space-between;
        gap: 18px;
        align-items: flex-start;
      }

      .processed-heading h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3.4rem);
        line-height: 0.94;
        letter-spacing: -0.06em;
      }

      .processed-copy {
        margin: 10px 0 0;
        color: var(--muted);
        line-height: 1.5;
        max-width: 880px;
      }

      .processed-status-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-end;
      }
      .pipeline-status-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 0 0 14px;
      }
      .pipeline-status-pills .pill {
        background: rgba(255, 255, 255, 0.92);
        border-color: var(--border);
        color: var(--text);
      }

      .view-toggle-row {
        display: flex;
        justify-content: flex-end;
        margin-top: 12px;
      }

      .review-layout {
        display: grid;
        grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
        gap: 16px;
        min-height: 0;
        align-items: stretch;
      }

      .review-layout--photo-sort {
        grid-template-columns: minmax(0, 3fr) minmax(280px, 1fr);
        min-height: clamp(520px, calc(100vh - 290px), 980px);
      }

      .bin-column,
      .room-column {
        border: 1px solid var(--border);
        border-radius: 16px;
        background: rgba(3, 11, 18, 0.72);
        display: flex;
        flex-direction: column;
        min-height: 0;
        height: clamp(420px, 68vh, 860px);
        overflow: hidden;
      }

      .bin-column {
        background:
          linear-gradient(180deg, rgba(255, 107, 107, 0.06), rgba(255, 107, 107, 0.04)),
          rgba(3, 11, 18, 0.82);
      }

      .review-layout--photo-sort .room-column {
        order: 1;
      }

      .review-layout--photo-sort .bin-column {
        order: 2;
      }

      .review-header {
        padding: 16px;
        border-bottom: 1px solid var(--border);
      }

      .review-header--action {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }

      .review-scroll {
        padding: 16px;
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
      }

      .thumbnail-grid {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 10px;
      }

      .thumbnail-grid--floor-plans {
        gap: 12px;
      }

      .floor-plan-stack {
        display: grid;
        gap: 18px;
      }

      .video-stack {
        display: grid;
        gap: 14px;
      }

      .video-layout {
        display: grid;
        grid-template-columns: minmax(0, 640px) minmax(280px, 1fr);
        gap: 18px;
        align-items: start;
      }

      .video-layout--tour {
        align-items: stretch;
      }

      .video-controls {
        display: grid;
        gap: 10px;
      }

      .video-player-row {
        display: flex;
        align-items: center;
        gap: 14px;
      }

      .video-player-shell,
      .tour-viewer-shell,
      .pano-viewer-shell {
        position: relative;
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 14px;
        background: rgba(6, 16, 25, 0.76);
        width: min(100%, 640px);
      }

      .video-player,
      .tour-viewer,
      .pano-viewer {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 12px;
        background: #000;
      }

      .video-player {
        aspect-ratio: 16 / 9;
        object-fit: contain;
      }

      .tour-viewer {
        aspect-ratio: 3 / 4;
        border: 0;
      }

      .pano-viewer {
        aspect-ratio: 16 / 9;
        overflow: hidden;
      }

      .pano-viewer .pnlm-container {
        border-radius: 12px;
      }

      .video-play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 124px;
        height: 124px;
        border: 1px solid rgba(143, 227, 255, 0.42);
        border-radius: 999px;
        background: rgba(4, 11, 18, 0.72);
        color: var(--accent);
        font-size: 3.4rem;
        line-height: 1;
        cursor: pointer;
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
        z-index: 2;
      }

      .video-play-button[hidden] {
        display: none;
      }

      .video-play-button:hover {
        border-color: rgba(143, 227, 255, 0.62);
        background: rgba(4, 11, 18, 0.84);
      }

      .video-scrub {
        width: min(100%, 640px);
        margin: 0;
        accent-color: var(--accent);
      }

      .video-skip-button {
        width: 42px;
        min-width: 42px;
        height: 42px;
        min-height: 42px;
        padding: 0;
        font-size: 1.1rem;
      }

      .video-area-panel {
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 14px;
        background: rgba(6, 16, 25, 0.76);
      }

      .video-area-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        gap: 10px;
        align-content: start;
      }

      .video-area-pill {
        justify-content: center;
        min-height: 42px;
        white-space: nowrap;
      }

      .video-area-pill.is-selected {
        border-color: rgba(143, 227, 255, 0.48);
        background: rgba(143, 227, 255, 0.12);
        color: var(--text);
      }

      .video-area-pill.is-active {
        border-color: rgba(143, 227, 255, 0.72);
        background: linear-gradient(180deg, rgba(0, 195, 255, 0.28), rgba(0, 121, 184, 0.28));
        color: white;
      }

      .tour-room-panel {
        display: flex;
        flex-direction: column;
        min-height: 0;
        max-height: none;
        align-self: stretch;
      }

      .tour-room-list {
        display: grid;
        gap: 10px;
        overflow-y: auto;
        flex: 1 1 auto;
        min-height: 0;
        padding-right: 4px;
      }

      .tour-room-row {
        display: grid;
        grid-template-columns: 170px minmax(0, 1fr);
        gap: 12px;
        align-items: center;
      }

      .tour-room-input {
        min-width: 0;
      }

      .tour-room-label {
        color: var(--text);
        font-size: 0.94rem;
        line-height: 1.3;
        text-align: left;
        word-break: break-word;
      }

      .pano-context-panel {
        display: flex;
        flex-direction: column;
        min-height: 0;
        align-self: stretch;
      }

      .pano-context-input {
        width: 100%;
        min-height: 100%;
        height: 100%;
        resize: none;
        line-height: 1.5;
      }


      .floor-plan-group {
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 16px;
        background: rgba(6, 16, 25, 0.76);
      }

      .floor-plan-group-title {
        margin: 0 0 14px;
        font-size: 1.05rem;
      }

      .room-description-input {
        margin-top: 12px;
        min-height: calc(1.45em + 26px);
        overflow-y: hidden;
        resize: none;
      }

      .thumb {
        position: relative;
        width: var(--thumb-frame-width, var(--thumb-short-edge, 110px));
        flex: 0 0 auto;
        border: 1px solid var(--border);
        border-radius: 12px;
        background: rgba(8, 18, 28, 0.95);
        overflow: hidden;
        cursor: grab;
        transition:
          transform 150ms ease,
          border-color 150ms ease,
          box-shadow 150ms ease;
      }

      .thumb.is-selected {
        border-color: #8bd7ff;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
        transform: translateY(-2px);
      }

      .thumb.is-selected::after {
        content: "";
        position: absolute;
        inset: 0;
        border: 3px solid #8bd7ff;
        border-radius: 12px;
        box-sizing: border-box;
        pointer-events: none;
        z-index: 2;
      }

      .thumb.is-selected .thumb-label {
        color: #eaf8ff;
      }

      .thumb img {
        display: block;
        width: var(--thumb-image-width, var(--thumb-short-edge, 110px));
        height: var(--thumb-image-height, var(--thumb-short-edge, 110px));
        object-fit: fill;
        background: rgba(13, 28, 43, 0.95);
      }

      .thumb-label {
        padding: 8px;
        font-size: 0.74rem;
        color: var(--muted);
        line-height: 1.3;
      }

      .bin-empty {
        color: var(--muted);
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 2px;
      }

      .room-stack {
        display: grid;
        gap: 14px;
      }

      .room-card {
        border: 1px solid var(--border);
        border-radius: 16px;
        background: rgba(9, 20, 31, 0.92);
        overflow: hidden;
      }

      .room-card.is-drop {
        border-color: rgba(143, 227, 255, 0.42);
        box-shadow: inset 0 0 0 1px rgba(143, 227, 255, 0.24);
      }

      .room-card-head {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 180px auto 92px;
        gap: 10px;
        padding: 14px;
        border-bottom: 1px solid var(--border);
      }

.room-card-head--outside {
  grid-template-columns: minmax(0, 1fr) auto 92px;
}

.floor-row--outside {
  grid-template-columns: minmax(0, 1fr);
}

.bin-column.is-drop {
  border-color: rgba(255, 107, 107, 0.48);
  box-shadow: inset 0 0 0 1px rgba(255, 107, 107, 0.24);
}

      .floor-list {
        display: grid;
        gap: 10px;
      }

      .floor-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 120px;
        gap: 10px;
      }

      .logs {
        max-height: 220px;
        overflow: auto;
        font-family: Consolas, monospace;
        font-size: 0.82rem;
        line-height: 1.5;
        color: #a5b6d1;
        white-space: pre-wrap;
      }

      .empty-state {
        padding: 32px;
        border: 1px dashed var(--border-strong);
        border-radius: 22px;
        color: var(--muted);
        min-height: 420px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: rgba(7, 14, 23, 0.56);
      }

      .hidden-input {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
      }

      @media (max-width: 1180px) {
        .app-shell {
          grid-template-columns: 1fr;
          padding-right: 18px;
        }

        .rail {
          border-right: 0;
          border-bottom: 1px solid var(--border);
        }
      }

      @media (max-width: 920px) {
        .grid-two,
        .review-layout,
        .upload-grid,
        .room-card-head,
        .video-layout {
          grid-template-columns: 1fr;
        }

        .topbar,
        .processed-topbar {
          flex-direction: column;
        }

        .status-pills,
        .processed-status-pills {
          justify-content: flex-start;
        }
      }


.dashboard-builder-pane {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  padding-top: 4px;
}

.builder-dashboard-support[hidden] {
  display: none !important;
}

.builder-dashboard-host {
  width: 100%;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: visible;
  color-scheme: light;
  padding-top: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  --bg: transparent;
  --panel: rgba(255, 252, 247, 0.92);
  --panel-2: #fffdf9;
  --border: rgba(72, 50, 34, 0.16);
  --border-strong: rgba(72, 50, 34, 0.22);
  --text: #21150d;
  --muted: rgba(33, 21, 13, 0.68);
  --accent: #d65b2f;
  --accent-2: #b94b22;
  --danger: #c24b3d;
  --bin: rgba(194, 75, 61, 0.08);
  --shadow: 0 20px 48px rgba(59, 31, 10, 0.12);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.builder-pane-chrome {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.builder-pane-chrome__copy {
  min-width: 0;
}

.builder-pane-title {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.builder-pane-copy {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
  max-width: 760px;
}

.builder-pane-management {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.builder-pane-body {
  display: grid;
  gap: 18px;
  min-height: 0;
}

.builder-dashboard-host .editor {
  display: grid;
  gap: 18px;
}

.builder-intake-sidebar {
  align-content: start;
}

.project-list--dashboard {
  max-height: 240px;
}

.builder-dashboard-host .processed-copy,
.builder-dashboard-host .upload-card p,
.builder-dashboard-host .summary-list p,
.builder-dashboard-host .panel-copy,
.builder-dashboard-host .summary-row,
.builder-dashboard-host .thumb-label,
.builder-dashboard-host .bin-empty,
.builder-dashboard-host .logs {
  color: var(--muted);
}

.builder-dashboard-host .panel,
.builder-dashboard-host .room-card,
.builder-dashboard-host .room-column,
.builder-dashboard-host .bin-column,
.builder-dashboard-host .floor-plan-group,
.builder-dashboard-host .video-area-panel,
.builder-dashboard-host .video-player-shell,
.builder-dashboard-host .tour-viewer-shell,
.builder-dashboard-host .pano-viewer-shell {
  background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.builder-dashboard-host .thumb {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(243, 238, 231, 0.98));
  border-color: var(--border);
}

.builder-dashboard-host .thumb img {
  background: rgba(255, 255, 255, 0.96);
}

.builder-dashboard-host .thumb-label {
  color: rgba(33, 21, 13, 0.68);
}

.builder-dashboard-host .room-card .pill {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--border);
  color: var(--text);
}

.builder-dashboard-host .upload-card {
  background: linear-gradient(180deg, rgba(250, 247, 242, 0.98), rgba(243, 238, 231, 0.98));
  border-color: var(--border);
}

.builder-dashboard-host .field,
.builder-dashboard-host .textarea,
.builder-dashboard-host .select {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--border);
  color: var(--text);
}

.builder-dashboard-host .field::placeholder,
.builder-dashboard-host .textarea::placeholder {
  color: rgba(33, 21, 13, 0.46);
}

.builder-dashboard-host .button {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.66);
  color: var(--text);
}

.builder-dashboard-host .button:hover {
  border-color: rgba(72, 50, 34, 0.24);
  background: rgba(255, 255, 255, 0.9);
}

.builder-dashboard-host .button-accent {
  border-color: rgba(214, 91, 47, 0.24);
  background: linear-gradient(180deg, rgba(214, 91, 47, 0.18), rgba(214, 91, 47, 0.08));
  color: var(--text);
}

.builder-dashboard-host .button-accent:hover {
  border-color: rgba(214, 91, 47, 0.3);
  background: linear-gradient(180deg, rgba(214, 91, 47, 0.22), rgba(214, 91, 47, 0.1));
}

.builder-dashboard-host .video-play-button {
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  border-color: rgba(214, 91, 47, 0.24);
}

.builder-dashboard-host .empty-state {
  min-height: 280px;
  background: rgba(255, 255, 255, 0.54);
  border-color: var(--border-strong);
}

.builder-dashboard-host .processed-topbar {
  align-items: flex-start;
}

.builder-dashboard-host .project-sidebar-actions {
  display: flex;
  justify-content: flex-end;
}

.builder-dashboard-host .project-sidebar-actions .button-danger {
  box-shadow: 0 18px 34px rgba(59, 31, 10, 0.12);
}

@media (max-width: 920px) {
  .builder-pane-chrome,
  .builder-pane-management {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

}
