:root {
  color-scheme: light;
  --bg: #f7f8fb;
  --surface: #fff;
  --surface-soft: #f2f5fa;
  --line: #e4e8f0;
  --line-strong: #d6deea;
  --text: #121826;
  --muted: #667085;
  --blue: #1f5eff;
  --blue-soft: #eaf1ff;
  --green: #12b981;
  --green-soft: #dcfce7;
  --orange: #f59e0b;
  --orange-soft: #fff5db;
  --red: #ef4444;
  --red-soft: #ffe4e6;
  --shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
  overflow: hidden;
}

button,
textarea,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.visually-hidden {
  position: fixed;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.app-shell {
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
}

.task-rail {
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  overflow: auto;
}

.rail-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 12px;
  color: var(--blue);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(31, 94, 255, 0.16);
}

.new-task,
.primary-button,
.outline-button,
.plain-button,
.mini-button {
  min-height: 38px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 14px;
  font-weight: 700;
}

.new-task,
.primary-button {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 94, 255, 0.18);
}

.outline-button {
  background: #fff;
  border-color: var(--line-strong);
  color: #344054;
}

.plain-button,
.mini-button {
  background: var(--surface-soft);
  color: #344054;
}

.mini-button {
  min-height: 30px;
  padding: 0 10px;
  font-size: 13px;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.task-list {
  min-height: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  overflow: auto;
}

.more-wrap {
  position: relative;
}

.more-entry {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: #344054;
}

.more-entry.active,
.more-entry:hover {
  border-color: rgba(31, 94, 255, 0.26);
  background: var(--blue-soft);
  color: var(--blue);
}

.more-entry b {
  font-size: 12px;
}

.more-popover {
  position: absolute;
  z-index: 60;
  left: calc(100% + 12px);
  top: 0;
  width: 220px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.16);
}

.more-popover::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 16px;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.more-popover button {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #344054;
  text-align: left;
}

.more-popover button:hover,
.more-popover button.active {
  background: var(--surface-soft);
  color: var(--blue);
}

.rail-section-title {
  margin: 2px 2px -4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.task-item {
  width: 100%;
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  text-align: left;
  color: var(--text);
}

.task-item:hover,
.task-item.active {
  border-color: rgba(31, 94, 255, 0.22);
  background: var(--blue-soft);
}

.task-item strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.task-item span {
  color: var(--muted);
  font-size: 13px;
}

.chat-panel,
.reader-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.work-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.work-header > div {
  min-width: 0;
}

.work-header p,
.work-header h1 {
  margin: 0;
}

.work-header p {
  color: var(--muted);
  font-size: 13px;
}

.work-header h1 {
  margin-top: 4px;
  font-size: clamp(21px, 2vw, 28px);
  overflow-wrap: anywhere;
  line-height: 1.18;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.chat-stream {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 110px;
  overflow: auto;
}

.message {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.message span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.message.user span {
  background: #eef2f7;
  color: #344054;
}

.message p {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  line-height: 1.75;
}

.upload-drop {
  display: grid;
  gap: 10px;
  place-items: center;
  margin-top: 24px;
  padding: 40px 22px;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
  text-align: center;
}

.upload-drop strong {
  color: var(--text);
  font-size: 18px;
}

.inline-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.upload-drop.dragging {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.composer {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
  padding: 14px 0 18px;
  background: linear-gradient(180deg, rgba(247, 248, 251, 0), var(--bg) 30%);
}

.composer textarea {
  min-height: 48px;
  max-height: 160px;
  resize: vertical;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  outline: none;
}

.composer textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31, 94, 255, 0.12);
}

.reader-shell {
  grid-template-rows: auto minmax(0, 1fr);
}

.feature-workspace {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.feature-workspace h2,
.feature-workspace p {
  margin: 0;
}

.feature-workspace p {
  color: var(--muted);
  font-size: 13px;
}

.feature-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.feature-tabs button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #344054;
}

.feature-tabs button.active {
  border-color: rgba(31, 94, 255, 0.3);
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 700;
}

.feature-body {
  min-height: 0;
  overflow: auto;
  width: min(1040px, calc(100% - 56px));
  margin: 0 auto;
  padding: 28px 0;
}

.feature-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.mini-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
}

.mini-table th,
.mini-table td {
  padding: 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.mini-table th {
  color: var(--muted);
  background: var(--surface-soft);
}

.kanban-lite,
.knowledge-lite,
.metric-lite,
.settings-lite {
  display: grid;
  gap: 10px;
}

.kanban-lite article,
.knowledge-lite article,
.metric-lite article,
.workspace-lite,
.report-lite,
.settings-lite label {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.kanban-lite article b,
.metric-lite article strong {
  font-size: 24px;
}

.knowledge-lite article em {
  color: var(--green);
  font-style: normal;
}

.report-lite ol {
  margin: 0 0 14px;
  padding-left: 20px;
  line-height: 1.8;
}

.settings-lite label {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.bar-lite {
  height: 150px;
  display: flex;
  align-items: end;
  gap: 12px;
  margin-top: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.bar-lite i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--blue), #8bb0ff);
}

.reader-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  padding: 22px;
  min-height: 0;
}

.paper {
  min-height: calc(100vh - 130px);
  padding: 44px 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 18px;
  line-height: 2.1;
}

.paper p {
  margin: 0 0 24px;
}

.paper-block {
  position: relative;
  margin: 0 0 24px;
  padding-right: 58px;
}

.paper-block.is-target {
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.08);
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.18);
}

.paper-block p {
  margin: 0;
}

.table-extract-text {
  max-width: 100%;
  overflow: auto;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.7;
  white-space: pre-wrap;
}

.paragraph-actions {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.paper-block:hover .paragraph-actions,
.paper-block:focus-within .paragraph-actions,
.paragraph-actions.visible {
  opacity: 1;
  pointer-events: auto;
}

.paragraph-edit-button {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.paper-block.editing {
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface-soft);
}

.paper-block.editing .paragraph-actions {
  position: static;
  margin-top: 10px;
  justify-content: flex-end;
}

.paragraph-editor {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
  line-height: 1.8;
  outline: none;
}

.paragraph-editor:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.fact-mark {
  position: relative;
  display: inline;
  padding: 2px 4px;
  border-radius: 5px;
  background: #fff0be;
  box-shadow: inset 0 -2px 0 rgba(245, 158, 11, 0.38);
  cursor: pointer;
  outline: none;
}

.suggestion-popover {
  position: absolute;
  z-index: 20;
  left: 0;
  top: calc(100% + 10px);
  width: min(360px, 86vw);
  display: none;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.18);
  color: var(--text);
  line-height: 1.6;
}

.suggestion-popover::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 18px;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  border-left: 1px solid var(--line-strong);
  border-top: 1px solid var(--line-strong);
  background: #fff;
}

.suggestion-popover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
  background: transparent;
}

.fact-mark:hover .suggestion-popover,
.fact-mark:focus-within .suggestion-popover,
.fact-mark.is-open .suggestion-popover {
  display: grid;
}

.fact-mark:focus {
  box-shadow:
    0 0 0 2px rgba(37, 99, 235, 0.22),
    inset 0 -2px 0 rgba(245, 158, 11, 0.38);
}

.fact-mark.is-jump-target {
  box-shadow:
    0 0 0 3px rgba(245, 158, 11, 0.24),
    inset 0 -2px 0 rgba(245, 158, 11, 0.58);
}

.suggestion-popover strong {
  color: #9a5b00;
  font-size: 13px;
}

.suggestion-popover span,
.suggestion-popover em {
  font-style: normal;
  font-size: 14px;
}

.suggestion-popover em {
  color: var(--muted);
}

.suggestion-popover button {
  min-height: 30px;
  border: 0;
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
}

.suggestion-popover button + button {
  background: #eef2f7;
  color: #344054;
}

.issue-panel {
  height: calc(100vh - 130px);
  position: sticky;
  top: 108px;
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
}

.panel-title,
.diagnosis-panel,
.issue-card,
.empty-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
}

.panel-title span {
  color: var(--muted);
  font-size: 13px;
}

.diagnosis-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-left: 4px solid #8b7a42;
}

.diagnosis-panel b {
  color: var(--muted);
  font-size: 12px;
}

.diagnosis-panel strong {
  line-height: 1.45;
}

.diagnosis-panel p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}

.diagnosis-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.diagnosis-panel li {
  display: grid;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.diagnosis-panel li span {
  color: #a26700;
  font-size: 12px;
  font-weight: 800;
}

.diagnosis-panel li em {
  color: var(--text);
  font-style: normal;
  font-weight: 700;
}

.diagnosis-panel li small {
  color: var(--muted);
}

.issue-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-left: 4px solid var(--orange);
  cursor: pointer;
}

.issue-card:hover,
.issue-card:focus,
.issue-card.is-selected {
  border-color: var(--line-strong);
  border-left-color: #d39b32;
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.16), var(--shadow);
  outline: none;
}

.issue-card.accepted {
  border-left-color: var(--green);
  opacity: 0.72;
}

.issue-card.ignored {
  border-left-color: var(--line-strong);
  opacity: 0.68;
}

.issue-card b,
.issue-card p,
.issue-card small {
  margin: 0;
}

.issue-card p {
  line-height: 1.6;
}

.issue-card small {
  color: var(--muted);
}

.issue-card div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.reader-chat-box {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.reader-chat-box strong {
  font-size: 14px;
}

.reader-chat-messages {
  display: grid;
  gap: 8px;
  max-height: 170px;
  overflow: auto;
}

.reader-chat-messages p {
  margin: 0;
  padding: 9px 10px;
  border-radius: 9px;
  background: var(--surface-soft);
  color: #344054;
  font-size: 13px;
  line-height: 1.55;
}

.reader-chat-messages p.user {
  background: var(--blue-soft);
  color: var(--blue);
}

.agent-bubble strong,
.reader-chat-messages strong {
  font-weight: 860;
  color: inherit;
}

.agent-bubble em,
.reader-chat-messages em {
  color: inherit;
  font-style: italic;
}

.reader-chat-input {
  display: grid;
  gap: 8px;
}

.reader-chat-input textarea {
  width: 100%;
  min-height: 62px;
  resize: vertical;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  outline: none;
}

.reader-chat-input textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31, 94, 255, 0.12);
}

.empty-panel {
  display: grid;
  gap: 8px;
  padding: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.empty-panel strong {
  color: var(--text);
}

.toast-region {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.toast {
  max-width: min(360px, calc(100vw - 40px));
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.toast.error {
  border-left-color: var(--red);
}

.app-shell {
  grid-template-columns: 280px minmax(0, 1fr);
  background: #fff;
}

.task-rail {
  gap: 14px;
  padding: 16px;
  background: #f4f4f2;
  border-right-color: #dedede;
  backdrop-filter: none;
  overflow: auto;
}

.rail-brand {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.brand-lockup {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #252525;
  font-size: 20px;
  font-weight: 800;
}

.brand-lockup strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 9px;
  background: #171717;
  color: #fff;
  box-shadow: none;
  font-size: 12px;
}

.icon-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #656565;
  font-size: 20px;
}

.icon-button:hover,
.side-nav-item:hover,
.new-task:hover,
.project-item:hover {
  background: #e9e9e7;
}

.new-task {
  width: 100%;
  justify-content: flex-start;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: #e9e9e7;
  color: #2f2f2f;
  box-shadow: none;
  text-align: left;
}

.new-task span {
  font-size: 20px;
  line-height: 1;
}

.side-nav {
  display: grid;
  gap: 4px;
}

.side-nav-item {
  width: 100%;
  min-height: 38px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #343434;
  text-align: left;
}

.side-nav-item span {
  color: #6a6a6a;
  font-weight: 800;
  text-align: center;
}

.side-nav-item b {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 700;
}

.side-nav-item.active {
  background: #e8e8e6;
  color: #111;
}

.more-wrap {
  position: relative;
}

.more-popover {
  left: calc(100% + 12px);
  width: 216px;
  border-radius: 16px;
  border-color: #d8d8d6;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

.more-popover button:hover,
.more-popover button.active {
  background: #f0f0ee;
  color: #111;
}

.rail-section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 10px;
  color: #7a7a77;
  font-size: 13px;
  font-weight: 800;
}

.rail-section-row button {
  border: 0;
  background: transparent;
  color: #777;
  font-weight: 800;
}

.project-item {
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #2f2f2f;
  text-align: left;
  font-weight: 700;
}

.task-list {
  gap: 6px;
}

.task-item {
  gap: 5px;
  padding: 10px;
  border-radius: 10px;
}

.task-item:hover,
.task-item.active {
  border-color: transparent;
  background: #e9eefc;
}

.task-badge {
  width: fit-content;
  max-width: 100%;
  padding: 2px 7px;
  border-radius: 999px;
  background: #e8e8e6;
  color: #6d6d6a;
  font-size: 11px;
  font-weight: 800;
}

.task-item.active .task-badge {
  background: #dbe7ff;
  color: #1f5eff;
}

.account-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border: 1px solid #e0e0de;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.account-card strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-card button {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #dedede;
  border-radius: 999px;
  background: #fff;
  color: #555;
}

.home-panel {
  min-height: 100vh;
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: #fff;
}

.home-topbar {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 28px;
  border-bottom: 1px solid #ededeb;
}

.workspace-switch,
.member-entry {
  min-height: 34px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #333;
  font-weight: 800;
}

.workspace-switch {
  font-size: 18px;
}

.workspace-switch span {
  color: #888;
  font-size: 14px;
}

.member-entry {
  padding: 0 14px;
  border: 1px solid #e2e2df;
  background: #fff;
}

.agent-panel {
  height: 100vh;
  min-height: 0;
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: #fff;
  overflow: hidden;
}

.agent-workspace {
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.agent-thread {
  width: min(860px, calc(100% - 56px));
  margin: 0 auto;
  padding: 44px 0 28px;
}

.agent-empty {
  width: min(980px, calc(100% - 56px));
  margin: 0 auto;
  padding: 9vh 0 30px;
  text-align: center;
}

.agent-empty h1 {
  margin: 0 0 18px;
  color: #222;
  font-size: clamp(38px, 5.8vw, 64px);
  line-height: 1.05;
  font-weight: 860;
  letter-spacing: 0;
}

.agent-empty p {
  max-width: 680px;
  margin: 0 auto;
  color: #737373;
  font-size: 17px;
  line-height: 1.75;
}

.agent-message {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 24px;
}

.agent-message.user {
  grid-template-columns: minmax(0, 1fr) 42px;
}

.agent-message.user .agent-avatar {
  order: 2;
}

.agent-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 850;
}

.agent-message.user .agent-avatar {
  background: #eeeeec;
  color: #333;
}

.agent-bubble {
  max-width: min(760px, 100%);
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: #222;
  line-height: 1.85;
  overflow-wrap: anywhere;
}

.agent-message.user .agent-bubble {
  justify-self: end;
  max-width: min(620px, 84%);
  background: #f4f4f2;
  border-color: #e8e8e4;
}

.agent-bubble.review {
  border-left: 4px solid #222;
  background: #fafafa;
}

.agent-doc-card {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid #dededb;
  border-radius: 16px;
  background: #fff;
  color: #222;
  text-align: left;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.agent-doc-card:hover {
  border-color: #c7c7c2;
  background: #f8f8f6;
}

.agent-doc-card .doc-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--blue);
  color: #fff;
  font-weight: 850;
}

.agent-doc-card strong,
.agent-doc-card small {
  display: block;
}

.agent-doc-card strong {
  overflow: hidden;
  color: #222;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agent-doc-card small {
  margin-top: 5px;
  color: #777;
  line-height: 1.55;
}

.agent-doc-card b {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f2f2ef;
  color: #333;
  white-space: nowrap;
}

.agent-composer-shell {
  width: min(900px, calc(100% - 56px));
  margin: 0 auto;
  padding: 14px 0 24px;
  position: relative;
  z-index: 20;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 20%, #fff 100%);
}

.agent-composer {
  width: 100%;
}

.agent-supplement {
  width: 100%;
  margin-top: 12px;
}

.agent-chips {
  margin-top: 22px;
}

.home-center {
  width: min(1020px, calc(100% - 56px));
  min-width: 0;
  margin: 0 auto;
  padding: 70px 0 44px;
  display: grid;
  align-content: start;
  justify-items: center;
}

.home-center h1 {
  max-width: 100%;
  margin: 0 0 28px;
  color: #222;
  font-size: clamp(36px, 5.8vw, 58px);
  line-height: 1.08;
  font-weight: 860;
  text-align: center;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.home-thread {
  width: min(820px, 100%);
  max-height: 210px;
  overflow: auto;
  margin-bottom: 14px;
  display: grid;
  gap: 8px;
}

.home-thread .message {
  margin: 0;
}

.hero-composer {
  width: min(820px, 100%);
  min-height: 132px;
  display: grid;
  grid-template-rows: minmax(70px, auto) auto;
  padding: 18px 18px 14px;
  border: 1px solid #d9d9d7;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.hero-composer.dragging {
  border-color: var(--blue);
  background: #f8fbff;
}

.hero-composer textarea {
  width: 100%;
  min-height: 72px;
  resize: none;
  border: 0;
  outline: none;
  color: #222;
  font-size: 18px;
  line-height: 1.65;
}

.hero-composer textarea::placeholder,
.brief-input::placeholder {
  color: #aaa;
}

.hero-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.attach-button {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid #e4e4e1;
  border-radius: 999px;
  background: #fff;
  color: #333;
  font-weight: 800;
}

.attach-button span {
  font-size: 21px;
  line-height: 1;
}

.brief-input {
  min-width: 0;
  flex: 1;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid #e7e7e4;
  border-radius: 999px;
  background: #fff;
  color: #777;
}

.send-round {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #171717;
  color: #fff;
  font-size: 25px;
  line-height: 1;
}

.supplement-row {
  width: min(820px, 100%);
  min-height: 42px;
  margin-top: 34px;
  padding: 0 18px;
  border: 1px solid #e1e1df;
  border-radius: 999px;
  background: #fff;
  color: #555;
  text-align: left;
  font-weight: 800;
}

.prompt-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.prompt-chips button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #dfdfdc;
  border-radius: 999px;
  background: #fff;
  color: #333;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.05);
  font-weight: 800;
}

.prompt-chips button:hover,
.attach-button:hover,
.member-entry:hover,
.supplement-row:hover {
  background: #f6f6f4;
}

.home-guide {
  width: min(620px, 100%);
  min-height: 130px;
  margin-top: 190px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px 18px;
  align-items: center;
  padding: 26px;
  border-radius: 16px;
  background: #eeeeec;
  color: #555;
}

.home-guide div {
  grid-row: 1 / -1;
  display: grid;
  gap: 8px;
}

.home-guide strong {
  color: #333;
  font-size: 20px;
}

.home-guide span {
  color: #8a8a86;
}

.home-guide i {
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(90deg, #fff 0 34%, rgba(255, 255, 255, 0.6) 34% 100%);
}

@media (max-width: 980px) {
  .app-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    max-width: 100vw;
    height: 100vh;
    min-height: 0;
    overflow: hidden;
  }

  .task-rail {
    position: static;
    height: auto;
    max-height: 36vh;
    width: 100%;
    max-width: 100vw;
    overflow: auto;
  }

  .more-popover {
    position: static;
    width: 100%;
    margin-top: 8px;
  }

  .more-popover::before {
    display: none;
  }

  .agent-panel {
    height: 100%;
    min-height: 0;
  }

  .task-list {
    flex-direction: row;
    overflow-x: auto;
  }

  .side-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .task-item {
    min-width: 220px;
  }

  .reader-grid {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .issue-panel {
    position: static;
    height: auto;
    overflow: visible;
  }
}

@media (max-width: 640px) {
  body {
    overflow: hidden;
  }

  .task-rail {
    padding: 12px;
    overflow: auto;
  }

  .brand-lockup {
    font-size: 17px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .side-nav {
    grid-template-columns: 1fr;
  }

  .task-list {
    flex-direction: column;
    overflow: auto;
  }

  .task-item {
    min-width: 0;
  }

  .work-header,
  .header-actions,
  .composer,
  .hero-tools,
  .home-guide {
    display: grid;
    grid-template-columns: 1fr;
  }

  .chat-stream,
  .composer,
  .home-center,
  .agent-thread,
  .agent-empty,
  .agent-composer-shell {
    width: calc(100% - 28px);
  }

  .home-topbar {
    padding: 0 14px;
  }

  .home-center {
    padding-top: 44px;
  }

  .home-center h1 {
    font-size: 30px;
  }

  .agent-empty {
    padding-top: 36px;
  }

  .agent-empty h1 {
    font-size: 34px;
  }

  .agent-message,
  .agent-message.user {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .agent-message.user .agent-avatar {
    order: 0;
  }

  .agent-avatar {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .agent-message.user .agent-bubble {
    justify-self: stretch;
    max-width: 100%;
  }

  .agent-doc-card {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .agent-doc-card .doc-icon {
    width: 36px;
    height: 36px;
  }

  .agent-doc-card b {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .agent-composer-shell {
    width: calc(100% - 20px);
    padding: 8px 0 10px;
  }

  .agent-composer {
    min-height: 112px;
    grid-template-rows: minmax(56px, auto) auto;
    padding: 12px;
  }

  .agent-composer textarea {
    min-height: 56px;
    font-size: 16px;
  }

  .agent-supplement,
  .agent-chips,
  .brief-input {
    display: none;
  }

  .hero-composer {
    border-radius: 20px;
  }

  .prompt-chips {
    margin-top: 26px;
  }

  .home-guide {
    margin-top: 54px;
  }

  .reader-grid {
    padding: 12px;
  }

  .paper {
    padding: 24px 18px;
    font-size: 16px;
  }
}

/* ZeeLin-style dark workspace */
:root {
  color-scheme: dark;
  --bg: #171717;
  --surface: #202020;
  --surface-soft: #2a2a2a;
  --line: #2c2c2c;
  --line-strong: #3a3a3a;
  --text: #e8e8e4;
  --muted: #8b8b86;
  --blue: #8ea6d9;
  --blue-soft: #263246;
  --green: #9ccf9f;
  --green-soft: #233529;
  --orange: #caa56a;
  --orange-soft: #3a2f20;
  --red: #d56a6a;
  --red-soft: #3c2424;
  --shadow: 0 18px 58px rgba(0, 0, 0, 0.42);
}

body {
  background: #171717;
  color: var(--text);
}

.app-shell {
  background: #171717;
  grid-template-columns: 280px minmax(0, 1fr);
}

.task-rail {
  padding: 16px 12px;
  background: #202020;
  border-right-color: #303030;
  color: #d9d9d4;
  scrollbar-color: #444 #202020;
}

.rail-brand {
  padding: 0 4px;
}

.brand-lockup {
  color: #f1f1ed;
  font-size: 20px;
}

.brand-mark {
  background: #303030;
  color: #f0f0eb;
}

.icon-button {
  color: #9b9b96;
}

.icon-button:hover,
.side-nav-item:hover,
.new-task:hover,
.project-item:hover {
  background: #2b2b2b;
}

.new-task {
  background: #2d2d2d;
  color: #e9e9e5;
}

.side-nav-item {
  color: #c9c9c4;
}

.side-nav-item span {
  color: #858580;
}

.side-nav-item.active {
  background: #2c2c2c;
  color: #f4f4ef;
}

.rail-section-row,
.rail-section-row button {
  color: #858580;
}

.project-item {
  color: #d8d8d2;
}

.task-item {
  color: #e2e2dc;
}

.task-item span {
  color: #92928c;
}

.task-item:hover,
.task-item.active {
  background: #2b2b2b;
}

.task-badge {
  background: #363636;
  color: #b7b7b0;
}

.task-item.active .task-badge {
  background: #303a4f;
  color: #b5c8ef;
}

.account-card {
  border-color: #343434;
  background: #242424;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.account-card button,
.member-entry,
.outline-button,
.plain-button,
.mini-button {
  border-color: #3b3b3b;
  background: #242424;
  color: #dfdfd9;
}

.primary-button {
  background: #e6e2d4;
  color: #181818;
  box-shadow: none;
}

.more-popover {
  border-color: #3a3a3a;
  background: #252525;
}

.more-popover::before {
  border-color: #3a3a3a;
  background: #252525;
}

.more-popover button {
  color: #d8d8d1;
}

.more-popover button:hover,
.more-popover button.active {
  background: #333;
  color: #fff;
}

.home-topbar,
.work-header {
  min-height: 64px;
  border-bottom-color: #2b2b2b;
  background: #171717;
  backdrop-filter: none;
}

.workspace-switch {
  max-width: min(760px, 76vw);
  overflow: hidden;
  color: #ecece7;
  font-size: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workspace-switch span {
  color: #858580;
}

.member-entry {
  border-radius: 13px;
  background: #242424;
  color: #dfdfd9;
}

.agent-panel,
.feature-workspace,
.reader-shell {
  background: #171717;
  color: #e6e6e1;
}

.reader-shell {
  height: 100vh;
  min-height: 0;
  overflow: hidden;
  grid-template-rows: auto minmax(0, 1fr);
}

.reader-grid {
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.paper {
  height: 100%;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
}

.issue-panel {
  height: 100%;
  min-height: 0;
  position: static;
  top: auto;
  overscroll-behavior: contain;
}

.agent-workspace {
  scrollbar-color: #444 #171717;
}

.agent-thread {
  width: min(880px, calc(100% - 56px));
  padding-top: 54px;
  padding-bottom: 26px;
}

.agent-task-head {
  margin: 0 0 46px;
  padding-bottom: 22px;
  border-bottom: 1px solid #2c2c2c;
}

.agent-task-head span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 999px;
  background: #30384d;
  color: #b8caef;
  font-size: 12px;
  font-weight: 800;
}

.agent-task-head h1 {
  margin: 0;
  color: #ededeb;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.25;
  letter-spacing: 0;
}

.agent-task-head p {
  margin: 8px 0 0;
  color: #858580;
}

.agent-empty h1 {
  color: #efefea;
}

.agent-empty p {
  color: #9b9b95;
}

.agent-message {
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.agent-message.user {
  grid-template-columns: minmax(0, 1fr) 40px;
}

.agent-avatar {
  width: 34px;
  height: 34px;
  justify-self: center;
  border-radius: 10px;
  background: #2d2d2d;
  color: #e9e9e4;
  font-size: 12px;
}

.agent-message.user .agent-avatar {
  background: #313131;
  color: #e9e9e4;
}

.agent-bubble {
  max-width: min(760px, 100%);
  border-color: transparent;
  border-radius: 0;
  background: transparent;
  color: #dfdfda;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.75;
}

.agent-message.user .agent-bubble {
  justify-self: end;
  max-width: min(620px, 84%);
  padding: 12px 18px;
  border-radius: 16px;
  background: #333;
  color: #e6e6df;
}

.agent-bubble.review {
  border-left: 3px solid #666;
  background: transparent;
  color: #e1e1dc;
}

.agent-doc-card {
  border-color: #343434;
  background: #242424;
  color: #e8e8e2;
  box-shadow: none;
}

.agent-doc-card:hover {
  border-color: #4a4a4a;
  background: #2b2b2b;
}

.agent-doc-card .doc-icon {
  background: #333;
  color: #e9e9e4;
}

.agent-doc-card strong {
  color: #efefeb;
}

.agent-doc-card small {
  color: #8f8f88;
}

.agent-doc-card b {
  background: #333;
  color: #e9e9e4;
}

.agent-composer-shell {
  width: min(780px, calc(100% - 56px));
  padding: 0 0 28px;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0), #171717 22%, #171717 100%);
}

.agent-composer {
  min-height: 126px;
  border-color: #363636;
  border-radius: 18px;
  background: #202020;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.35);
}

.agent-composer.dragging {
  border-color: #686868;
  background: #242424;
}

.agent-composer textarea {
  color: #e4e4dd;
  background: transparent;
}

.agent-composer textarea::placeholder,
.brief-input::placeholder {
  color: #777;
}

.attach-button {
  border-color: #353535;
  background: #262626;
  color: #deded9;
}

.attach-button:hover,
.member-entry:hover,
.supplement-row:hover {
  background: #303030;
}

.brief-input {
  border-color: #333;
  background: #202020;
  color: #bdbdb7;
}

.send-round {
  background: #e9e5d8;
  color: #171717;
}

.agent-supplement,
.agent-chips {
  display: none;
}

.paper,
.issue-panel,
.reader-chat-box,
.diagnosis-panel,
.feature-body,
.workspace-lite,
.report-lite,
.settings-lite label,
.metric-lite article,
.kanban-lite article,
.mini-table,
.bar-lite {
  border-color: #333;
  background: #202020;
  color: #e4e4df;
}

.paper p,
.paper-block p,
.table-extract-text,
.issue-card p,
.diagnosis-panel p,
.reader-chat-messages p,
.report-lite li,
.workspace-lite p,
.mini-table td {
  color: #d7d7d1;
}

.work-header h1,
.work-header h2,
.feature-workspace h2,
.panel-title strong,
.diagnosis-panel strong,
.diagnosis-panel li em,
.issue-card b {
  color: #efefea;
}

.work-header p,
.feature-workspace p,
.panel-title span,
.diagnosis-panel b,
.diagnosis-panel li small,
.issue-card small,
.mini-table th {
  color: #93938e;
}

.issue-card,
.diagnosis-panel,
.empty-panel,
.reader-chat-input textarea,
.paper-block.editing,
.paragraph-editor,
.table-extract-text {
  border-color: #333;
  background: #252525;
  color: #dfdfd8;
}

.diagnosis-panel {
  border-left-color: #8b7440;
}

.diagnosis-panel li {
  border-top-color: #343434;
}

.diagnosis-panel li span {
  color: #d1b15f;
}

.paragraph-edit-button {
  border-color: #3a3a3a;
  background: #2a2a2a;
  color: #c8c8c2;
}

.paragraph-editor:focus {
  border-color: #6c6c68;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.fact-mark {
  background: #443a23;
  color: #f1d38c;
}

.paper-block.is-target {
  background: rgba(196, 148, 62, 0.12);
  box-shadow: 0 0 0 2px rgba(196, 148, 62, 0.28);
}

.issue-card:hover,
.issue-card:focus,
.issue-card.is-selected {
  border-color: #504838;
  border-left-color: #d1b15f;
  box-shadow: 0 0 0 2px rgba(209, 177, 95, 0.16);
}

.suggestion-popover {
  border-color: #474747;
  background: #242424;
  color: #e8e8e2;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.suggestion-popover em {
  color: #9b9b95;
}

.suggestion-popover button {
  background: #e9e5d8;
  color: #171717;
}

.toast {
  border-color: #363636;
  background: #242424;
  color: #e8e8e2;
}

@media (max-width: 980px) {
  .app-shell {
    background: #171717;
  }

  .task-rail {
    border-bottom: 1px solid #303030;
  }
}

@media (max-width: 640px) {
  .agent-composer-shell {
    width: calc(100% - 20px);
  }

  .agent-message,
  .agent-message.user {
    grid-template-columns: 34px minmax(0, 1fr);
  }
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: #171717;
  color: #f1f1ed;
}

.auth-panel {
  width: min(520px, 100%);
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid #303030;
  border-radius: 22px;
  background: #202020;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f6f6f0;
  font-size: 20px;
}

.auth-brand span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #303030;
  font-weight: 850;
}

.auth-panel h1 {
  margin: 10px 0 0;
  color: #f6f6f0;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.auth-panel p {
  margin: 0;
  color: #aaa9a2;
  line-height: 1.7;
}

.auth-panel label {
  display: grid;
  gap: 8px;
  color: #cfcfc9;
  font-weight: 750;
}

.auth-panel input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #393939;
  border-radius: 14px;
  background: #171717;
  color: #f1f1ed;
  outline: none;
}

.auth-panel input:focus {
  border-color: #777;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.auth-member-button,
.auth-submit,
.code-row button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: #f0eee6;
  color: #171717;
  font-weight: 850;
}

.auth-submit {
  width: 100%;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #858580;
  font-size: 13px;
  font-weight: 800;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #303030;
}

.code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 124px;
  gap: 10px;
}

.code-row button {
  border-radius: 14px;
  background: #303030;
  color: #f1f1ed;
}

.auth-status {
  padding: 10px 12px;
  border: 1px solid #3a3a3a;
  border-radius: 14px;
  background: #262626;
  color: #deded8 !important;
}

.task-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 6px;
  align-items: stretch;
}

.task-delete {
  width: 32px;
  min-height: 32px;
  align-self: center;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: #858580;
  font-size: 18px;
  line-height: 1;
  opacity: 0;
}

.task-item-row:hover .task-delete,
.task-item-row.active .task-delete {
  opacity: 1;
}

.task-delete:hover {
  border-color: #4a2b2b;
  background: #342222;
  color: #f2b3b3;
}

.account-card span {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.account-card small {
  min-width: 0;
  overflow: hidden;
  color: #8d8d87;
  text-overflow: ellipsis;
  white-space: nowrap;
}
