.add-mode-shell{display:grid;gap:28px;padding:4px 0 28px}.add-mode-intro{text-align:center;padding:8px 18px 0;margin-bottom:2px}.add-mode-intro h2{margin:0;color:var(--ink);font-size:30px}.add-mode-intro p{margin:8px 0 0;color:var(--muted);font-size:14px;line-height:1.5}.add-choice{display:grid;grid-template-columns:92px 1fr;gap:18px;align-items:center;padding:24px 22px;border:1px solid rgba(125,143,131,.28);border-radius:24px;background:var(--card);box-shadow:0 10px 28px rgba(15,34,56,.05)}.add-choice-icon{display:grid;width:82px;height:82px;place-items:center;border-radius:22px;background:rgba(125,143,131,.1);font-size:42px}.add-choice-copy h3{margin:0 0 7px;color:var(--ink);font-size:22px}.add-choice-copy p{margin:0 0 16px;color:var(--muted);font-size:13px;line-height:1.5}.add-choice .btn{display:block;width:max-content;min-width:150px;margin:0 auto;text-align:center}.show-morrow-card .upload-examples{margin-top:18px}.show-morrow-card .upload-tagline{margin-bottom:18px}.tell-morrow-panel{margin-top:10px;padding:22px;border:1px solid rgba(125,143,131,.28);border-radius:24px;background:var(--card)}.tell-morrow-panel[hidden]{display:none!important}.tell-morrow-header{display:flex;justify-content:space-between;gap:18px;align-items:flex-start}.tell-morrow-header h3{margin:0;font-size:24px}.tell-morrow-header p{margin:6px 0 0;color:var(--muted);font-size:13px}.tell-morrow-close{border:0;background:transparent;color:var(--muted);font-size:24px;cursor:pointer}.tell-morrow-form{display:grid;gap:12px;margin-top:18px}.tell-morrow-form textarea{width:100%;min-height:132px;resize:vertical;padding:16px;border:1px solid var(--line);border-radius:18px;background:#fff!important;color:#10263f!important;-webkit-text-fill-color:#10263f!important;caret-color:#10263f;font:inherit;font-size:16px;line-height:1.5;outline:none}.tell-morrow-form textarea::placeholder{color:#8793a1!important;-webkit-text-fill-color:#8793a1!important;opacity:1}.tell-morrow-form textarea:focus{border-color:#7d8f83;box-shadow:0 0 0 4px rgba(125,143,131,.13)}.tell-morrow-examples{margin:3px 0 0;color:var(--muted);font-size:12px;line-height:1.6}.tell-morrow-status{min-height:18px;color:var(--muted);font-size:12px}.tell-review-card{margin-top:18px;padding:18px;border-radius:18px;background:rgba(125,143,131,.08)}.tell-review-kicker{color:var(--muted);font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.tell-review-card h3{margin:7px 0 4px;font-size:21px}.tell-review-meta,.tell-review-notes,.tell-review-confirmation{margin:6px 0;color:var(--muted);font-size:13px;line-height:1.5}.tell-review-confirmation{color:var(--ink)}.tell-review-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}

/* The Add chooser already explains Show Morrow. The old upload card only remains
   as a DOM wrapper for the file input, preview, and processing status. display:contents
   removes the wrapper box entirely (including dark-mode card styling) while allowing
   preview/status UI to appear normally after a file is selected. */
.show-morrow-card{
  display:contents!important;
}
.show-morrow-card>h2,
.show-morrow-card>.upload-tagline,
.show-morrow-card>.upload-examples,
.show-morrow-card>.choose-file-label,
.show-morrow-card>.supported-files,
.show-morrow-card #file{
  display:none!important;
}
.show-morrow-card #filePreview,
.show-morrow-card #preview,
.show-morrow-card #status{
  width:100%;
}

@media(max-width:620px){.add-mode-shell{gap:24px}.add-choice{grid-template-columns:70px 1fr;padding:20px 18px;gap:14px}.add-choice-icon{width:66px;height:66px;font-size:34px}.add-choice-copy h3{font-size:20px}.add-choice .btn{width:max-content;min-width:150px;max-width:100%;margin:0 auto}.tell-review-actions .btn{flex:1}}

/* Center each Add choice action across the full card, not only its text column. */
.add-choice-action{
  grid-column:1 / -1;
  justify-self:center;
  margin:0 auto!important;
}
