:root {
  color-scheme: light;
  --ink: #17231f;
  --muted: #68736d;
  --paper: #f3f1ea;
  --panel: #fffdf8;
  --line: #d8ddd7;
  --accent: #d7ff62;
  --planned: #758078;
  --progress: #6a53ff;
  --done: #209d72;
  --blocked: #c04738;
  --day-width: 148px;
  font-family:
    Inter,
    Manrope,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--paper);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}
html {
  min-width: 320px;
  background: var(--paper);
}
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 0, rgb(215 255 98 / 32%), transparent 28rem),
    var(--paper);
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--progress);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 10px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid rgb(23 35 31 / 10%);
  background: rgb(247 245 239 / 92%);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px 12px 12px 3px;
  background: var(--ink);
  color: var(--accent);
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.workspace-switcher {
  display: grid;
  gap: 3px;
  min-width: min(260px, 42vw);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.workspace-switcher select {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  text-transform: none;
}
.topbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  min-height: 44px;
  padding: 11px 13px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.nav-link:hover,
.nav-link[aria-current="page"] {
  background: rgb(255 255 255 / 82%);
  color: var(--ink);
}
.sync-state {
  max-width: 36ch;
  color: var(--muted);
  font-size: 13px;
}
.account-control {
  position: relative;
  flex: 0 0 auto;
}
.account-trigger {
  display: inline-flex;
  align-items: center;
  max-width: min(240px, 34vw);
  min-height: 44px;
  gap: 8px;
  padding: 5px 10px 5px 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgb(255 255 255 / 82%);
  color: var(--ink);
  cursor: pointer;
}
.account-trigger:hover,
.account-trigger[aria-expanded="true"] {
  border-color: #aab4ad;
  background: white;
}
.account-avatar {
  display: grid;
  flex: 0 0 32px;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.account-login {
  overflow: hidden;
  min-width: 0;
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-chevron {
  color: var(--muted);
  font-size: 16px;
}
.account-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  right: 0;
  width: min(300px, calc(100vw - 20px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 18px 48px rgb(23 35 31 / 18%);
}
.account-menu p {
  overflow-wrap: anywhere;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.account-menu strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}
.account-logout {
  width: 100%;
}

.button,
.icon-button {
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  text-decoration: none;
}
.button:active,
.icon-button:active {
  transform: scale(0.98);
}
.button-primary {
  background: var(--ink);
  color: white;
}
.button-primary:hover {
  background: #283c35;
}
.button-secondary {
  border: 1px solid var(--line);
  background: rgb(255 255 255 / 72%);
  color: var(--ink);
}
.button-secondary:hover {
  border-color: #aab4ad;
  background: white;
}
.button-danger {
  background: #fff0ed;
  color: #962f22;
}
.icon-button {
  min-width: 44px;
  padding: 0;
  background: #f1f0ea;
  font-size: 22px;
}

main {
  padding: clamp(20px, 4vw, 52px);
}
.signed-out {
  width: min(980px, 100%);
  margin: 12vh auto;
  padding: clamp(28px, 6vw, 60px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 24px 70px rgb(23 35 31 / 12%);
}
.signed-out h1 {
  margin: 6px 0 12px;
  font-size: clamp(30px, 6vw, 56px);
  line-height: 1.05;
}
.signed-out p:not(.eyebrow) {
  max-width: 52ch;
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.6;
}
.sign-in-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.sign-in-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(255 255 255 / 64%);
}
.sign-in-card-primary {
  border-color: #a9bc71;
  background: #f8ffe2;
}
.sign-in-card h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
}
.sign-in-card p:not(.eyebrow) {
  max-width: none;
  margin: 0;
}
.sign-in-card form,
.email-link,
.email-link form {
  display: grid;
  gap: 12px;
}
.email-login-secondary-actions {
  display: grid;
  justify-items: center;
  gap: 4px;
}
.email-login-link {
  appearance: none;
  min-height: 32px;
  padding: 5px 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  cursor: pointer;
}
.email-login-link:hover:not(:disabled) {
  color: var(--ink);
}
.email-login-link:disabled {
  color: var(--muted);
  text-decoration: none;
  cursor: default;
  opacity: 0.8;
}
.form-status,
.email-link [role="status"] {
  min-height: 1.5em;
  margin: 0 !important;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.anonymous-setup {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.anonymous-setup p,
.anonymous-setup .setup-warning,
.anonymous-setup .setup-next-step {
  max-width: none;
  margin: 0;
}
.setup-heading,
.credential-row,
.access-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.setup-heading h2,
.access-banner h2 {
  margin: 4px 0 0;
}
.setup-status {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}
.credential-row {
  align-items: stretch;
}
.credential-row > code {
  display: block;
  overflow-x: auto;
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}
.setup-warning {
  padding: 14px;
  border-radius: 12px;
  background: #fff2d4;
  color: #63440a !important;
}
.client-configs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.client-configs article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgb(255 255 255 / 70%);
}
.client-configs h3 {
  margin: 0;
}
.client-configs pre {
  overflow: auto;
  min-height: 92px;
  margin: 0;
  padding: 12px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  line-height: 1.5;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.access-banner {
  align-items: flex-start;
  padding: 18px;
  border: 1px solid #c9a64c;
  border-radius: 16px;
  background: #fff7dc;
}
.access-banner p {
  max-width: 62ch;
  margin: 6px 0 0;
  color: #584c2f;
  line-height: 1.5;
}
.access-banner-trusted {
  border-color: #9cbf61;
  background: #f3ffdc;
}
.email-link {
  flex: 1 1 320px;
  min-width: min(320px, 100%);
  padding: 14px;
  border-radius: 12px;
  background: rgb(255 255 255 / 70%);
}
.device-request {
  flex: 1 1 100%;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: rgb(255 255 255 / 70%);
}
.device-request code {
  font-size: 1.15em;
  letter-spacing: 0.08em;
}
.device-status {
  font-weight: 700;
}

.planner,
.connections-page {
  display: grid;
  min-width: 0;
  gap: 18px;
}
.hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 0 4px 12px;
}
.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1,
h2 {
  letter-spacing: -0.04em;
}
.hero h1 {
  margin: 5px 0;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1;
}
.hero-copy,
.timeline-help {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 12px;
}
.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--planned);
}
.dot-progress {
  background: var(--progress);
}
.dot-done {
  background: var(--done);
}
.dot-blocked {
  background: var(--blocked);
}

.inbox,
.timeline-section,
.connections-section {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgb(255 253 248 / 90%);
  box-shadow: 0 14px 36px rgb(23 35 31 / 6%);
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.section-heading h2 {
  margin: 2px 0 0;
  font-size: 21px;
}
.section-heading h2 span {
  color: var(--muted);
  font-size: 14px;
}
.section-help {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
}
.mcp-help-toggle {
  margin: 0 18px;
  max-width: calc(100% - 36px);
}
.mcp-setup {
  margin: 18px 18px 0;
  padding: 16px 18px;
  border: 1px solid #b9c88a;
  border-radius: 14px;
  background: #f8ffe2;
}
.mcp-setup h3 {
  margin: 0;
  font-size: 16px;
}
.mcp-setup ol {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  padding-left: 22px;
  line-height: 1.5;
}
.mcp-setup p {
  margin: 0;
  color: #4b4330;
  line-height: 1.5;
}
.mcp-setup code {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.92em;
}
.connections-content {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  padding: 18px;
}
.connection-form {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgb(255 255 255 / 60%);
}
.connections-list-wrap {
  min-width: 0;
}
.connections-status {
  min-height: 1.4em;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}
.connections-list {
  display: grid;
  gap: 10px;
}
.connection-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}
.connection-card > div {
  min-width: 0;
  overflow-wrap: anywhere;
}
.connection-card h3,
.issued-heading h3 {
  margin: 0;
  font-size: 16px;
}
.connection-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.issued-connection {
  display: grid;
  gap: 14px;
  margin: 0 18px 18px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: #f8ffe2;
}
.issued-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}
.issued-warning {
  margin: 0;
  color: #4b4330;
  line-height: 1.5;
}
.copy-field {
  display: flex;
  gap: 8px;
}
.copy-field input {
  min-width: 0;
}
.inbox-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
  gap: 10px;
  min-height: 76px;
  padding: 12px;
}
.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  color: var(--muted);
  text-align: center;
}

.card {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 14px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--planned);
  border-radius: 14px;
  background: var(--panel);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 8px 20px rgb(23 35 31 / 8%);
  cursor: pointer;
  min-width: 0;
}
.card:hover {
  border-color: #adb7b0;
  transform: translateY(-1px);
}
article.card {
  cursor: default;
}
article.card:hover {
  border-color: var(--line);
  transform: none;
}
.card[data-status="in-progress"] {
  border-left-color: var(--progress);
}
.card[data-status="done"] {
  border-left-color: var(--done);
}
.card[data-status="blocked"] {
  border-left-color: var(--blocked);
}
.card-title {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
  line-height: 1.25;
  white-space: pre-wrap;
}
.card-content {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-wrap;
}
.card-meta {
  align-self: end;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.timeline-viewport {
  width: 100%;
  max-width: 100%;
  overflow: auto;
  height: clamp(430px, 66dvh, 860px);
  overscroll-behavior: contain;
  scrollbar-gutter: stable both-edges;
}
.timeline-canvas {
  position: relative;
  min-width: calc(var(--day-width) * 30);
}
.timeline-days {
  position: sticky;
  z-index: 5;
  top: 0;
  display: grid;
  grid-template-columns: repeat(30, var(--day-width));
  height: 58px;
  border-bottom: 1px solid var(--line);
  background: rgb(255 253 248 / 96%);
}
.timeline-day {
  display: grid;
  place-content: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}
.timeline-day strong {
  color: var(--ink);
  font-size: 13px;
}
.timeline-grid {
  position: relative;
  min-height: 360px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 calc(var(--day-width) - 1px),
    var(--line) calc(var(--day-width) - 1px) var(--day-width)
  );
}
.timeline-card {
  position: absolute;
  height: auto;
  min-height: 126px;
}

.share-dialog {
  width: min(720px, calc(100vw - 24px));
  max-height: calc(100dvh - 24px);
  overflow: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 28px 90px rgb(23 35 31 / 28%);
}
.share-dialog::backdrop {
  background: rgb(23 35 31 / 42%);
  backdrop-filter: blur(4px);
}
.share-dialog-header,
.share-section-heading,
.share-value-wrap,
.share-actions,
.share-editor {
  display: flex;
  align-items: center;
  gap: 10px;
}
.share-dialog-header,
.share-section-heading,
.share-editor {
  justify-content: space-between;
}
.share-dialog-header h2,
.share-section h3,
.share-editor p {
  margin: 0;
}
.share-dialog-subtitle {
  margin: 10px 0 18px;
  color: var(--muted);
  line-height: 1.5;
}
.share-section {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgb(255 255 255 / 64%);
}
.share-status {
  color: var(--muted);
  font-size: 12px;
}
.share-value-wrap input {
  min-width: 0;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  color: var(--ink);
}
.share-actions {
  flex-wrap: wrap;
}
.share-editors {
  display: grid;
  gap: 8px;
}
.share-editor {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}
.share-editor p {
  display: grid;
  gap: 3px;
}
.share-editor span {
  color: var(--muted);
  font-size: 12px;
}

.public-page {
  width: min(960px, 100%);
  margin: 0 auto;
}
.public-viewer {
  padding: clamp(22px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
}
.public-title {
  margin: 6px 0;
  font-size: clamp(32px, 6vw, 56px);
}
.public-subtitle {
  color: var(--muted);
}
.public-projects > div,
.public-projects section {
  display: grid;
  gap: 10px;
}
.public-projects ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.public-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}
.public-card p {
  margin: 0;
  color: var(--muted);
}

.task-editor {
  width: min(620px, calc(100vw - 24px));
  max-height: calc(100dvh - 24px);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 28px 90px rgb(23 35 31 / 28%);
}
.task-editor::backdrop {
  background: rgb(23 35 31 / 42%);
  backdrop-filter: blur(4px);
}
.task-editor form {
  display: grid;
  gap: 16px;
  padding: 22px;
}
.editor-heading,
.editor-actions,
.field-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.editor-heading {
  justify-content: space-between;
}
.editor-heading h2 {
  margin: 4px 0 0;
}
.field {
  display: grid;
  flex: 1;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}
.field textarea {
  resize: vertical;
  line-height: 1.5;
}
.editor-spacer {
  flex: 1;
}
.form-error {
  min-height: 1.2em;
  margin: 0;
  color: var(--blocked);
}
.toast {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  max-width: min(420px, calc(100vw - 36px));
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 40px rgb(23 35 31 / 22%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}
.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[hidden] {
  display: none !important;
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .topbar-nav {
    order: 3;
    width: 100%;
  }
  .topbar-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .workspace-switcher {
    min-width: min(100%, 260px);
  }
  .account-trigger {
    max-width: min(190px, 46vw);
  }
  .sync-state {
    order: 3;
    width: 100%;
    text-align: right;
  }
  main {
    padding: 16px 10px 28px;
  }
  .hero {
    align-items: start;
    flex-direction: column;
  }
  .client-configs {
    grid-template-columns: 1fr;
  }
  .sign-in-grid {
    grid-template-columns: 1fr;
  }
  .access-banner,
  .credential-row,
  .setup-heading {
    align-items: stretch;
    flex-direction: column;
  }
  .setup-status {
    text-align: left;
  }
  .legend {
    justify-content: start;
  }
  .section-heading {
    align-items: flex-start;
  }
  .timeline-help {
    max-width: 24ch;
    font-size: 12px;
  }
  .section-help {
    max-width: 24ch;
    text-align: right;
  }
  .connections-content {
    grid-template-columns: 1fr;
    padding: 12px;
  }
  .issued-connection {
    margin: 0 12px 12px;
  }
  .mcp-setup {
    margin: 12px 12px 0;
  }
  .mcp-help-toggle {
    margin: 0 12px;
    max-width: calc(100% - 24px);
  }
  .connection-card,
  .copy-field {
    align-items: stretch;
    flex-direction: column;
  }
  .copy-field .button,
  .connection-card .button {
    width: 100%;
  }
  .field-row {
    align-items: stretch;
    flex-direction: column;
  }
  .editor-actions {
    flex-wrap: wrap;
  }
  .editor-spacer {
    display: none;
  }
  .editor-actions .button {
    flex: 1 1 44%;
  }
  .share-value-wrap,
  .share-editor {
    align-items: stretch;
    flex-direction: column;
  }
  .share-value-wrap .button,
  .share-editor .button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .topbar {
    padding-inline: 10px;
  }
  .topbar-actions,
  .topbar-actions .button,
  .signed-out > .button,
  .credential-row .button,
  .client-configs .button,
  .access-banner .button {
    width: 100%;
  }
  .workspace-switcher,
  .share-actions .button {
    width: 100%;
    max-width: none;
  }
  .signed-out {
    margin: 4vh auto;
    padding: 22px 16px;
    border-radius: 20px;
  }
  .sign-in-card {
    padding: 18px 14px;
  }
  .sign-in-card .button,
  .email-link .button {
    width: 100%;
  }
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }
  .timeline-help {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
