.atlas-workbench {
  --sand-050: #fbf7ef;
  --sand-100: #f2e8d8;
  --sand-200: #e5d4bb;
  --sand-300: #d7c0a2;
  --ink-900: #19130f;
  --ink-700: #514539;
  --ink-500: #7f7366;
  --accent-600: #bf5c29;
  --accent-700: #99461d;
  --mint-100: #e3efe5;
  --mint-700: #2c6840;
  --sun-300: #f7de62;
  --danger-100: #fde7e5;
  --danger-600: #b62d1d;
  --warn-600: #b56c11;
  --shadow-soft: 0 14px 36px rgba(77, 54, 29, 0.1);
  --shadow-card: 0 8px 18px rgba(77, 54, 29, 0.08);
}

.atlas-workbench * {
  box-sizing: border-box;
}

.atlas-workbench {
  margin: 0;
  font-family: "Avenir Next", "Hiragino Sans", "Yu Gothic", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(191, 92, 41, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(44, 104, 64, 0.06), transparent 18%),
    linear-gradient(180deg, #fcf9f2 0%, #efe4d1 100%);
}

.atlas-workbench h1,
.atlas-workbench h2,
.atlas-workbench h3,
.atlas-workbench h4,
.atlas-workbench p,
.atlas-workbench ol,
.atlas-workbench ul {
  margin: 0;
}

.atlas-workbench .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.atlas-workbench .workbench-shell {
  max-width: 1680px;
  margin: 0 auto;
  padding: 18px;
}

.atlas-workbench .hero-bar,
.atlas-workbench .panel,
.atlas-workbench .overview-strip,
.atlas-workbench .workflow-strip,
.atlas-workbench .workbench-footer {
  background: rgba(255, 251, 244, 0.84);
  border: 1px solid rgba(215, 192, 162, 0.88);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.atlas-workbench .hero-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
}

.atlas-workbench .hero-copy-block {
  min-width: 0;
}

.atlas-workbench .hero-meta-line {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.atlas-workbench .eyebrow,
.atlas-workbench .hero-context {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.atlas-workbench .eyebrow {
  color: var(--accent-600);
  background: rgba(191, 92, 41, 0.08);
}

.atlas-workbench .hero-context {
  color: var(--ink-700);
  background: rgba(81, 69, 57, 0.08);
}

.atlas-workbench h1 {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.atlas-workbench .hero-copy {
  margin-top: 8px;
  max-width: 700px;
  line-height: 1.5;
  color: var(--ink-500);
  font-size: 14px;
}

.atlas-workbench .hero-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.atlas-workbench .developer-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--ink-700);
}

.atlas-workbench .workflow-strip,
.atlas-workbench .overview-strip {
  margin-top: 12px;
  padding: 12px;
}

.atlas-workbench .workflow-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
}

.atlas-workbench .workflow-step {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(215, 192, 162, 0.75);
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-700);
}

.atlas-workbench .workflow-step span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(191, 92, 41, 0.1);
  color: var(--accent-700);
  font-size: 12px;
}

.atlas-workbench .workflow-step.is-active {
  background: linear-gradient(135deg, rgba(255, 243, 229, 0.95), rgba(255, 251, 244, 0.9));
}

.atlas-workbench .overview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.atlas-workbench .overview-card,
.atlas-workbench .metric-tile,
.atlas-workbench .history-item,
.atlas-workbench .field-card,
.atlas-workbench .analysis-lists article,
.atlas-workbench .status-card,
.atlas-workbench .chat-thread,
.atlas-workbench .chat-compose,
.atlas-workbench .history-sidecar {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(215, 192, 162, 0.82);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.atlas-workbench .overview-card {
  padding: 12px 14px;
  min-height: 88px;
  position: relative;
  overflow: hidden;
}

.atlas-workbench .overview-card::after {
  content: "";
  position: absolute;
  inset: auto -18px -24px auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(191, 92, 41, 0.14), transparent);
}

.atlas-workbench .overview-title {
  color: var(--ink-500);
  font-size: 12px;
  font-weight: 700;
}

.atlas-workbench .overview-value {
  margin-top: 8px;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 900;
  line-height: 1;
}

.atlas-workbench .overview-note {
  margin-top: 6px;
  color: var(--ink-500);
  font-size: 12px;
}

.atlas-workbench .workspace-layout {
  display: grid;
  grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
  gap: 14px;
  margin-top: 14px;
  align-items: start;
}

.atlas-workbench .workspace-intake,
.atlas-workbench .workspace-flow {
  display: grid;
  gap: 14px;
}

.atlas-workbench .panel {
  padding: 18px;
}

.atlas-workbench .panel-head {
  margin-bottom: 12px;
}

.atlas-workbench .panel-head p {
  margin-top: 4px;
  color: var(--ink-500);
  line-height: 1.5;
  font-size: 13px;
}

.atlas-workbench .with-actions {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
}

.atlas-workbench .drop-zone {
  display: grid;
  place-items: center;
  min-height: 138px;
  padding: 18px;
  border-radius: 20px;
  border: 2px dashed rgba(191, 92, 41, 0.3);
  background: linear-gradient(135deg, rgba(255, 243, 229, 0.95), rgba(255, 251, 244, 0.72));
  cursor: pointer;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.atlas-workbench .drop-zone:hover,
.atlas-workbench .drop-zone.dragging {
  transform: translateY(-1px);
  border-color: var(--accent-600);
  box-shadow: 0 12px 28px rgba(191, 92, 41, 0.11);
}

.atlas-workbench .drop-title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.atlas-workbench .drop-subtitle {
  margin-top: 8px;
  color: var(--ink-500);
  line-height: 1.45;
  font-size: 13px;
}

.atlas-workbench .upload-actions,
.atlas-workbench .inline-actions,
.atlas-workbench .export-actions,
.atlas-workbench .compare-actions,
.atlas-workbench .developer-links,
.atlas-workbench .chat-quick-actions,
.atlas-workbench .chat-compose-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.atlas-workbench .upload-actions,
.atlas-workbench .status-card {
  margin-top: 12px;
}

.atlas-workbench .action,
.atlas-workbench .mini-button,
.atlas-workbench select,
.atlas-workbench input,
.atlas-workbench textarea {
  font: inherit;
}

.atlas-workbench .action,
.atlas-workbench .mini-button {
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.atlas-workbench .action:hover,
.atlas-workbench .mini-button:hover {
  transform: translateY(-1px);
}

.atlas-workbench .action {
  padding: 11px 14px;
  font-weight: 800;
}

.atlas-workbench .action-primary {
  background: linear-gradient(135deg, var(--accent-600), #d17242);
  color: #fff;
}

.atlas-workbench .action-secondary,
.atlas-workbench .mini-button {
  background: #fff9f2;
  color: var(--ink-900);
  border-color: rgba(215, 192, 162, 0.95);
}

.atlas-workbench .action-muted {
  background: var(--mint-100);
  color: var(--mint-700);
}

.atlas-workbench .mini-button {
  padding: 9px 12px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.atlas-workbench .mini-button-accent {
  background: var(--ink-900);
  color: #fff;
  border-color: var(--ink-900);
}

.atlas-workbench .status-card {
  padding: 12px 14px;
}

.atlas-workbench .status-label,
.atlas-workbench .preview-meta,
.atlas-workbench .viewer-hint,
.atlas-workbench .page-chip,
.atlas-workbench .history-meta,
.atlas-workbench .chat-status,
.atlas-workbench .health-results {
  color: var(--ink-500);
  font-size: 12px;
}

.atlas-workbench .status-message {
  margin-top: 4px;
  font-weight: 800;
  line-height: 1.4;
}

.atlas-workbench .health-results {
  margin-top: 10px;
  line-height: 1.6;
}

.atlas-workbench .health-check-row {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(215, 192, 162, 0.8);
  background: rgba(255, 255, 255, 0.85);
}

.atlas-workbench .health-check-row + .health-check-row {
  margin-top: 8px;
}

.atlas-workbench .health-check-ok {
  border-color: rgba(34, 128, 96, 0.35);
  background: rgba(226, 245, 236, 0.92);
}

.atlas-workbench .health-check-error {
  border-color: rgba(191, 92, 41, 0.4);
  background: rgba(255, 238, 232, 0.92);
}

.atlas-workbench .viewer-head,
.atlas-workbench .history-head {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: flex-start;
}

.atlas-workbench .page-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 243, 184, 0.72);
  color: var(--warn-600);
  font-weight: 800;
}

.atlas-workbench .pdf-preview {
  margin-top: 12px;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(215, 192, 162, 0.92);
  background: linear-gradient(180deg, #fff 0%, #f7f0e7 100%);
}

.atlas-workbench .pdf-preview.empty {
  display: grid;
  place-items: center;
  color: var(--ink-500);
}

.atlas-workbench .pdf-preview object,
.atlas-workbench .pdf-preview iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.atlas-workbench .viewer-hint {
  margin-top: 10px;
}

.atlas-workbench .field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.atlas-workbench .field-card {
  padding: 12px;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.atlas-workbench .field-card:hover {
  transform: translateY(-1px);
}

.atlas-workbench .field-card.active-field {
  border-color: var(--sun-300);
  box-shadow: 0 0 0 3px rgba(247, 222, 98, 0.32), var(--shadow-card);
}

.atlas-workbench .field-card.missing {
  border-color: rgba(182, 45, 29, 0.42);
  background: var(--danger-100);
}

.atlas-workbench .field-card label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  font-weight: 900;
  margin-bottom: 8px;
}

.atlas-workbench .field-card input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(215, 192, 162, 0.95);
  background: rgba(255, 252, 247, 0.98);
  color: var(--ink-900);
}

.atlas-workbench .field-card input:disabled {
  opacity: 0.86;
}

.atlas-workbench .field-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.atlas-workbench .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.atlas-workbench .badge-confidence {
  background: rgba(44, 104, 64, 0.12);
  color: var(--mint-700);
}

.atlas-workbench .badge-page {
  background: rgba(191, 92, 41, 0.1);
  color: var(--accent-700);
}

.atlas-workbench .badge-empty {
  background: rgba(182, 45, 29, 0.12);
  color: var(--danger-600);
}

.atlas-workbench .field-evidence {
  margin-top: 8px;
  padding: 9px 11px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 243, 184, 0.82), rgba(255, 248, 224, 0.92));
  color: #70520d;
  font-size: 12px;
  line-height: 1.5;
}

.atlas-workbench .analysis-chat-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}

.atlas-workbench .analysis-hero {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  color: #fff;
}

.atlas-workbench .analysis-state-positive {
  background: linear-gradient(135deg, #275d38, #4d8b4f);
}

.atlas-workbench .analysis-state-caution {
  background: linear-gradient(135deg, #b56c11, #d19328);
}

.atlas-workbench .analysis-state-negative {
  background: linear-gradient(135deg, #9d2d23, #cc4e40);
}

.atlas-workbench .analysis-state-neutral {
  background: linear-gradient(135deg, #66584d, #8f7f72);
}

.atlas-workbench .analysis-stars {
  font-size: 24px;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.atlas-workbench .analysis-score-line,
.atlas-workbench .analysis-rank-line {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.atlas-workbench .analysis-score-line strong,
.atlas-workbench .analysis-rank-line strong {
  font-size: 28px;
  line-height: 1;
}

.atlas-workbench .analysis-label {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.88;
}

.atlas-workbench .analysis-judgement-block {
  text-align: right;
}

.atlas-workbench .analysis-pill {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 900;
}

.atlas-workbench .analysis-risk-text {
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.92;
}

.atlas-workbench .analysis-grid,
.atlas-workbench .quality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.atlas-workbench .metric-tile {
  padding: 12px;
}

.atlas-workbench .metric-label {
  color: var(--ink-500);
  font-size: 12px;
  font-weight: 700;
}

.atlas-workbench .metric-value {
  margin-top: 6px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
}

.atlas-workbench .analysis-lists {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.atlas-workbench .analysis-lists article {
  padding: 12px;
}

.atlas-workbench .analysis-lists ul {
  margin: 8px 0 0 18px;
  padding: 0;
}

.atlas-workbench .analysis-lists li {
  margin-bottom: 5px;
  line-height: 1.45;
}

.atlas-workbench .narrative-box {
  margin-top: 8px;
  line-height: 1.65;
  color: var(--ink-700);
  font-size: 13px;
}

.atlas-workbench .commentary-card {
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(255, 242, 224, 0.96));
}

.atlas-workbench .chat-quick-actions {
  margin-bottom: 10px;
}

.atlas-workbench .chat-thread {
  min-height: 384px;
  max-height: 560px;
  overflow: auto;
  padding: 12px;
}

.atlas-workbench .chat-empty {
  color: var(--ink-500);
  font-size: 13px;
  line-height: 1.6;
}

.atlas-workbench .chat-message {
  display: grid;
  gap: 5px;
  margin-bottom: 12px;
}

.atlas-workbench .chat-message:last-child {
  margin-bottom: 0;
}

.atlas-workbench .chat-message-role {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.atlas-workbench .chat-bubble {
  padding: 10px 12px;
  border-radius: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
  font-size: 13px;
}

.atlas-workbench .chat-message-user .chat-bubble {
  background: rgba(191, 92, 41, 0.1);
  color: var(--accent-700);
}

.atlas-workbench .chat-message-assistant .chat-bubble {
  background: rgba(44, 104, 64, 0.1);
  color: #244f31;
}

.atlas-workbench .chat-message-system .chat-bubble {
  background: rgba(81, 69, 57, 0.08);
  color: var(--ink-700);
}

.atlas-workbench .chat-compose {
  margin-top: 10px;
  padding: 12px;
}

.atlas-workbench .chat-compose textarea {
  width: 100%;
  resize: vertical;
  min-height: 100px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(215, 192, 162, 0.95);
  background: rgba(255, 252, 247, 0.98);
  color: var(--ink-900);
}

.atlas-workbench .chat-compose-actions {
  margin-top: 10px;
  align-items: center;
  justify-content: space-between;
}

.atlas-workbench .history-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 12px;
  align-items: start;
}

.atlas-workbench .history-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.atlas-workbench .history-item {
  padding: 12px;
}

.atlas-workbench .history-item strong {
  display: block;
  line-height: 1.4;
}

.atlas-workbench .history-meta {
  margin-top: 7px;
  line-height: 1.5;
}

.atlas-workbench .history-item button {
  margin-top: 10px;
}

.atlas-workbench .history-sidecar {
  padding: 12px;
}

.atlas-workbench .compare-actions {
  flex-direction: column;
}

.atlas-workbench select {
  min-width: 0;
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(215, 192, 162, 0.95);
  background: rgba(255, 255, 255, 0.92);
}

.atlas-workbench .export-panel .export-actions {
  margin-top: 4px;
}

.atlas-workbench .comparison-panel,
.atlas-workbench .developer-panel {
  margin-top: 14px;
}

.atlas-workbench .quality-grid.compact {
  margin-bottom: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.atlas-workbench .comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.atlas-workbench .comparison-table th,
.atlas-workbench .comparison-table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(215, 192, 162, 0.9);
  text-align: left;
  vertical-align: top;
  line-height: 1.45;
}

.atlas-workbench .comparison-table th {
  color: var(--ink-500);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.atlas-workbench .developer-debug {
  display: grid;
  gap: 12px;
}

.atlas-workbench .debug-card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(215, 192, 162, 0.82);
  border-radius: 18px;
  padding: 12px;
}

.atlas-workbench .debug-card h3 {
  margin-bottom: 8px;
}

.atlas-workbench .debug-card table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.atlas-workbench .debug-card th,
.atlas-workbench .debug-card td {
  padding: 9px 7px;
  border-bottom: 1px solid rgba(215, 192, 162, 0.82);
  text-align: left;
  vertical-align: top;
  line-height: 1.4;
  font-size: 12px;
}

.atlas-workbench .workbench-footer {
  margin-top: 14px;
  padding: 12px 16px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--ink-500);
  font-size: 12px;
}

.atlas-workbench .hidden {
  display: none !important;
}

@media (max-width: 1440px) {
  .atlas-workbench .workflow-list,
  .atlas-workbench .overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .atlas-workbench .analysis-chat-grid,
  .atlas-workbench .history-layout {
    grid-template-columns: 1fr;
  }

  .atlas-workbench .history-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1180px) {
  .atlas-workbench .workbench-shell {
    padding: 14px;
  }

  .atlas-workbench .hero-bar,
  .atlas-workbench .with-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .atlas-workbench .hero-actions {
    justify-content: flex-start;
  }

  .atlas-workbench .workspace-layout,
  .atlas-workbench .field-grid,
  .atlas-workbench .analysis-chat-grid,
  .atlas-workbench .analysis-grid,
  .atlas-workbench .quality-grid.compact,
  .atlas-workbench .workflow-list,
  .atlas-workbench .overview-grid,
  .atlas-workbench .history-list {
    grid-template-columns: 1fr 1fr;
  }

  .atlas-workbench .workspace-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .atlas-workbench .workbench-shell {
    padding: 12px;
  }

  .atlas-workbench .hero-bar,
  .atlas-workbench .panel,
  .atlas-workbench .overview-strip,
  .atlas-workbench .workflow-strip,
  .atlas-workbench .workbench-footer {
    border-radius: 20px;
  }

  .atlas-workbench .hero-bar {
    padding: 16px;
  }

  .atlas-workbench h1 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .atlas-workbench .workflow-list,
  .atlas-workbench .overview-grid,
  .atlas-workbench .field-grid,
  .atlas-workbench .analysis-chat-grid,
  .atlas-workbench .analysis-grid,
  .atlas-workbench .quality-grid.compact,
  .atlas-workbench .history-list {
    grid-template-columns: 1fr;
  }

  .atlas-workbench .pdf-preview,
  .atlas-workbench .pdf-preview object,
  .atlas-workbench .pdf-preview iframe {
    min-height: 320px;
    height: 320px;
  }

  .atlas-workbench .chat-thread {
    min-height: 260px;
  }
}

@media print {
  .atlas-workbench {
    background: #fff;
  }

  .atlas-workbench .workbench-shell {
    max-width: none;
    padding: 0;
  }

  .atlas-workbench .hero-bar,
  .atlas-workbench .workflow-strip,
  .atlas-workbench .overview-strip,
  .atlas-workbench .panel,
  .atlas-workbench .workbench-footer {
    background: #fff;
    box-shadow: none;
    border-color: #d6d0c8;
  }

  .atlas-workbench .workspace-intake,
  .atlas-workbench .chat-panel,
  .atlas-workbench .history-panel,
  .atlas-workbench .comparison-panel,
  .atlas-workbench .developer-panel,
  .atlas-workbench .hero-actions,
  .atlas-workbench .inline-actions,
  .atlas-workbench .upload-actions,
  .atlas-workbench .export-panel,
  .atlas-workbench .workbench-footer {
    display: none !important;
  }

  .atlas-workbench .workspace-layout {
    grid-template-columns: 1fr;
  }

  .atlas-workbench .field-card,
  .atlas-workbench .metric-tile,
  .atlas-workbench .analysis-lists article {
    box-shadow: none;
    background: #fff;
  }
}
