:root {
  --bg: #f5f7f8;
  --surface: #ffffff;
  --surface-soft: #f9fbfb;
  --line: #d9e2e1;
  --line-strong: #c7d3d1;
  --text: #1f2d2b;
  --muted: #667673;
  --brand: #1f6a5b;
  --brand-strong: #144f44;
  --brand-soft: #e7f3f0;
  --blue: #2e6bbf;
  --amber: #b57a00;
  --teal: #15816d;
  --shadow: 0 1px 0 rgba(21, 47, 43, 0.04);
  --radius: 6px;
  --radius-sm: 4px;
  --content: 1280px;
  --focus: 0 0 0 2px rgba(31, 106, 91, 0.18);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

body {
  line-height: 1.45;
}

#app {
  min-height: 100vh;
}

.shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: linear-gradient(180deg, var(--brand-strong), #15564b);
  color: #fff;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  font-weight: 700;
  color: #fff;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  flex: none;
}

.brand-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand-title span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
}

.search-form {
  flex: 1 1 360px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 760px;
}

.search-field {
  position: relative;
  flex: 1;
}

.search-field input {
  width: 100%;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 0 14px 0 40px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  outline: none;
}

.search-field input:focus {
  box-shadow: var(--focus);
  border-color: rgba(255, 255, 255, 0.28);
}

.search-field .icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6d7d7a;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.tabs {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  white-space: nowrap;
  padding: 0 18px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.tab {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 14px;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 0.95rem;
}

.tab.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
  font-weight: 600;
}

.page {
  width: min(var(--content), calc(100% - 32px));
  margin: 18px auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: start;
}

.page.no-rail {
  grid-template-columns: minmax(0, 1fr);
}

.main,
.rail,
.auth-shell {
  min-width: 0;
}

.section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section + .section {
  margin-top: 18px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.section-head h1,
.section-head h2,
.section-head h3,
.section-head p {
  margin: 0;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.section-title h1,
.section-title h2 {
  font-size: 1.1rem;
  line-height: 1.2;
}

.section-title p {
  font-size: 0.88rem;
  color: var(--muted);
}

.section-body {
  padding: 0;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: #fff;
  color: var(--text);
  font-weight: 600;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease,
    box-shadow 0.15s ease;
}

.btn:hover {
  border-color: #b7c6c4;
}

.btn:focus-visible,
.tab:focus-visible,
.topic-row:focus-visible,
.category-row:focus-visible,
.post-action:focus-visible,
.avatar-link:focus-visible,
.plain-link:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.btn.primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.btn.primary:hover {
  background: #1b5c50;
  border-color: #1b5c50;
}

.btn.ghost {
  background: transparent;
  border-color: transparent;
  color: var(--muted);
  padding-inline: 10px;
}

.btn.ghost:hover {
  background: rgba(31, 106, 91, 0.08);
  color: var(--brand);
}

.btn.small {
  height: 32px;
  padding: 0 10px;
  font-size: 0.9rem;
}

.icon {
  width: 16px;
  height: 16px;
  flex: none;
  display: inline-block;
  color: currentColor;
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.muted {
  color: var(--muted);
}

.tiny {
  font-size: 0.86rem;
}

.topic-list {
  display: flex;
  flex-direction: column;
}

.topic-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.topic-row:last-child {
  border-bottom: 0;
}

.topic-row:hover {
  background: #fbfdfd;
}

.topic-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.topic-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.84rem;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--line);
  color: var(--text);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.category-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex: none;
  background: var(--accent, var(--brand));
}

.topic-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
}

.topic-excerpt {
  color: var(--muted);
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.topic-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.84rem;
}

.topic-side {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 128px;
  justify-content: flex-end;
  color: var(--muted);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}

.stat strong {
  font-size: 1rem;
  color: var(--text);
}

.stat span {
  font-size: 0.76rem;
}

.sidebar-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 16px;
}

.sidebar-block:last-child {
  margin-bottom: 0;
}

.sidebar-block header {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
  font-weight: 700;
}

.sidebar-block .content {
  padding: 12px 14px;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
}

.category-row {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.category-row:last-child {
  border-bottom: 0;
}

.category-swatch {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--accent, var(--brand));
}

.category-row h3,
.category-row p {
  margin: 0;
}

.category-row h3 {
  font-size: 0.96rem;
  font-weight: 700;
}

.category-row p {
  font-size: 0.84rem;
  color: var(--muted);
}

.category-count {
  color: var(--muted);
  font-size: 0.84rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.86rem;
}

.breadcrumb a {
  color: var(--brand);
  font-weight: 600;
}

.topic-page .section-head {
  align-items: flex-start;
}

.topic-header {
  padding: 18px 18px 12px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.topic-header h1 {
  margin: 8px 0 10px;
  font-size: 1.38rem;
  line-height: 1.3;
}

.topic-header .meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
}

.topic-tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.83rem;
}

.post-list {
  display: flex;
  flex-direction: column;
}

.post {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.post:last-child {
  border-bottom: 0;
}

.post-aside {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.avatar-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--avatar, var(--brand));
  color: #fff;
  font-weight: 700;
  flex: none;
}

.avatar.sm {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-size: 0.83rem;
}

.post-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.post-author strong {
  font-size: 0.96rem;
}

.post-author span {
  color: var(--muted);
  font-size: 0.82rem;
}

.post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-action {
  height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.post-body {
  min-width: 0;
  color: #23312f;
}

.post-body p {
  margin: 0 0 12px;
}

.post-body p:last-child {
  margin-bottom: 0;
}

.post-body blockquote {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-left: 3px solid #9bc8bf;
  background: #f3f8f7;
  color: #506562;
}

.post-body pre {
  margin: 0 0 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #f8fafb;
  overflow: auto;
  font-size: 0.9rem;
}

.post-body code {
  padding: 0.12rem 0.28rem;
  border-radius: 4px;
  background: #eef4f3;
  font-size: 0.93em;
}

.post-body pre code {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.composer {
  padding: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 16px;
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-weight: 600;
  font-size: 0.9rem;
}

.input,
.textarea,
.select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.input,
.select {
  height: 40px;
  padding: 0 12px;
}

.textarea {
  min-height: 220px;
  padding: 12px;
  resize: vertical;
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: var(--brand);
  box-shadow: var(--focus);
}

.field-help {
  font-size: 0.82rem;
  color: var(--muted);
}

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

.preview {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.preview header {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
  font-weight: 700;
}

.preview .body {
  padding: 14px;
  color: var(--text);
}

.preview .body .empty {
  color: var(--muted);
}

.auth-shell {
  width: min(980px, calc(100% - 32px));
  margin: 24px auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.auth-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.auth-panel .head {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.auth-panel .head h1,
.auth-panel .head h2 {
  margin: 0;
  font-size: 1.1rem;
}

.auth-panel .head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.auth-panel .body {
  padding: 18px;
}

.auth-aside {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat-box {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 12px;
  background: #fff;
}

.stat-box strong {
  display: block;
  font-size: 1.2rem;
}

.stat-box span {
  color: var(--muted);
  font-size: 0.82rem;
}

.empty-state {
  padding: 28px 18px;
  text-align: center;
  color: var(--muted);
}

.empty-state strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-result-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.search-result-head strong {
  font-size: 1.05rem;
}

.topic-page .section-body {
  padding: 0;
}

.topic-footer {
  padding: 16px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.reply-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.reply-box .textarea {
  min-height: 160px;
}

.notice {
  border: 1px solid #d6e6e1;
  background: #f4fbf8;
  color: #2b5b50;
  border-radius: 5px;
  padding: 10px 12px;
  font-size: 0.9rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #edf4f2;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 600;
}

.right {
  text-align: right;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.linkish {
  color: var(--brand);
}

.plain-link {
  color: inherit;
}

.user-summary {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-summary .meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.user-summary .meta strong {
  font-size: 1rem;
}

.user-summary .meta span {
  color: var(--muted);
  font-size: 0.84rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.profile-grid .metric {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 12px;
  background: #fff;
}

.metric strong {
  display: block;
  font-size: 1.2rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 1080px) {
  .page,
  .auth-shell,
  .form-grid,
  .profile-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rail {
    position: static;
  }
}

@media (max-width: 820px) {
  .topbar {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .brand {
    min-width: 0;
  }

  .topbar-actions {
    margin-left: 0;
    width: 100%;
    justify-content: flex-end;
  }

  .search-form {
    order: 3;
    width: 100%;
    max-width: none;
  }

  .topic-row,
  .post {
    grid-template-columns: 1fr;
  }

  .topic-side {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .page,
  .auth-shell {
    width: min(100% - 20px, var(--content));
    margin-top: 14px;
  }

  .tabs {
    padding-inline: 10px;
  }

  .section-head,
  .topic-header,
  .composer,
  .auth-panel .body,
  .auth-aside,
  .sidebar-block header,
  .sidebar-block .content,
  .post,
  .topic-footer {
    padding-left: 12px;
    padding-right: 12px;
  }

  .profile-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Cocos forum visual pass */
:root {
  --bg: #f1f3f4;
  --surface: #ffffff;
  --surface-soft: #fafbfc;
  --line: #e1e5e7;
  --line-strong: #cfd6d9;
  --text: #2e363a;
  --muted: #7b858a;
  --brand: #1f6a5b;
  --brand-strong: #155247;
  --brand-soft: #e8f3f0;
  --radius: 3px;
}

body.forum-page {
  background: var(--bg);
  color: var(--text);
}

.topbar {
  padding: 0;
  background: #fff;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 3px rgba(31, 43, 48, 0.04);
}

.topbar-inner {
  width: min(1240px, calc(100% - 32px));
  min-height: 64px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) minmax(260px, 380px) auto;
  gap: 20px;
  align-items: center;
}

.brand {
  min-width: 190px;
  gap: 9px;
  color: var(--text);
}

.brand-icon {
  border-radius: 7px;
}

.brand strong {
  color: #253136;
  font-size: 0.98rem;
}

.brand em {
  color: #939ca0;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.top-link {
  color: #687378;
  font-size: 0.88rem;
  white-space: nowrap;
}

.top-link:hover,
.top-link.active {
  color: var(--brand);
}

.top-search {
  width: 100%;
  max-width: none;
}

.search-box input {
  height: 36px;
  border-color: #dfe4e6;
  border-radius: 3px;
  background: #f7f8f9;
}

.search-box input:focus {
  background: #fff;
  border-color: rgba(31, 106, 91, 0.45);
}

.top-actions {
  gap: 4px;
  margin-left: 0;
}

.nav-link {
  height: 34px;
  padding: 0 9px;
  border-radius: 3px;
  color: #687378;
  font-size: 0.86rem;
}

.nav-link:hover,
.nav-link.active {
  background: #f3f6f5;
  border-color: transparent;
  color: var(--brand);
}

.nav-link.accent {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.nav-link.accent:hover {
  background: var(--brand-strong);
  color: #fff;
}

.nav-link.buttonish {
  border-color: transparent;
  color: #8a9498;
}

.subnav {
  min-height: 48px;
  padding: 0 max(16px, calc((100% - 1240px) / 2));
  gap: 22px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.subnav a {
  height: 48px;
  padding: 0 2px;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  color: #7a858a;
  font-size: 0.9rem;
}

.subnav a:hover {
  background: transparent;
  color: var(--brand);
}

.subnav a.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
  font-weight: 600;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 38px;
}

.page-grid {
  gap: 20px;
}

.home .page-grid,
.top .page-grid,
.categories .page-grid,
.category .page-grid,
.search .page-grid {
  grid-template-columns: minmax(0, 1fr);
}

.home .sidebar,
.top .sidebar,
.categories .sidebar,
.category .sidebar,
.search .sidebar {
  display: none;
}

.panel {
  border-radius: var(--radius);
  border-color: var(--line);
  box-shadow: 0 1px 2px rgba(28, 40, 45, 0.035);
}

.panel-head {
  padding: 18px 20px 16px;
  background: #fff;
  border-bottom-color: #e8ecee;
}

.panel-head h2 {
  color: #2e383c;
  font-size: 1.18rem;
  font-weight: 600;
}

.panel-head p {
  margin-top: 5px;
  color: #879196;
  font-size: 0.86rem;
}

.panel-actions {
  align-items: center;
}

.btn {
  border-radius: 3px;
  box-shadow: none;
}

.btn-primary {
  background: var(--brand);
  border-color: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
}

.btn-ghost {
  color: #778286;
}

.topic-table-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px 78px 110px;
  gap: 16px;
  align-items: center;
  padding: 10px 20px;
  background: #fafbfc;
  border-bottom: 1px solid #e8ecee;
  color: #9aa3a7;
  font-size: 0.76rem;
}

.topic-table-head span:not(:first-child) {
  text-align: center;
}

.topic-row {
  grid-template-columns: minmax(0, 1fr) 78px 78px 110px;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-bottom-color: #edf0f1;
}

.topic-row:hover {
  background: #fbfcfc;
}

.topic-row.is-pinned {
  background: #fffdf7;
}

.topic-headline {
  gap: 5px 10px;
}

.topic-title {
  order: 1;
  flex: 1 1 100%;
  color: #273238;
  font-size: 1rem;
  font-weight: 600;
}

.topic-title:hover {
  color: var(--brand);
}

.topic-category {
  order: 2;
  height: 22px;
  padding: 0;
  gap: 6px;
  border-radius: 0;
  background: transparent;
  color: var(--category-color, #7a868a);
  font-size: 0.78rem;
  font-weight: 500;
}

.topic-category-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--category-color, var(--brand));
}

.topic-tag {
  order: 3;
  height: 21px;
  padding: 0 6px;
  border-radius: 3px;
  font-size: 0.72rem;
}

.topic-snippet {
  display: none;
}

.topic-meta {
  gap: 7px;
  margin-top: 7px;
  color: #9aa3a7;
  font-size: 0.77rem;
}

.topic-meta a {
  color: #7d888d;
}

.topic-author {
  gap: 5px;
}

.topic-author .avatar {
  width: 20px !important;
  height: 20px !important;
  font-size: 0.68rem;
}

.topic-counts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  justify-content: initial;
}

.topic-counts span {
  min-width: 0;
  gap: 2px;
}

.topic-counts strong {
  color: #5f6b70;
  font-size: 0.84rem;
  font-weight: 500;
  white-space: nowrap;
}

.topic-counts em {
  color: #a0a8ac;
  font-size: 0.72rem;
}

.category-grid {
  display: block;
  padding: 0;
}

.category-card,
.category-row {
  grid-template-columns: 10px minmax(0, 1fr) 86px;
  gap: 16px;
  padding: 17px 20px;
  border: 0;
  border-bottom: 1px solid #edf0f1;
  border-radius: 0;
  background: #fff;
}

.category-card:last-child,
.category-row:last-child {
  border-bottom: 0;
}

.category-card:hover,
.category-row:hover {
  border-color: #edf0f1;
  background: #fbfcfc;
}

.category-color {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

.category-copy strong {
  color: #2e393e;
  font-size: 0.98rem;
}

.category-copy p {
  margin-top: 4px;
  color: #899398;
  font-size: 0.82rem;
}

.category-stats {
  text-align: center;
}

.category-stats b {
  color: #5e6a6f;
  font-size: 0.96rem;
}

.category-stats span {
  color: #a0a8ac;
  font-size: 0.72rem;
}

.topic-page {
  grid-template-columns: minmax(0, 1fr) 270px;
}

.topic-page .sidebar {
  display: block;
}

.topic-title-head h1 {
  color: #263238;
  font-size: 1.4rem;
  font-weight: 600;
}

.topic-breadcrumbs a,
.topic-head-meta a {
  color: var(--brand);
}

.post {
  background: #fff;
  border-top-color: #e8ecee;
}

.post-user {
  background: #fafbfc;
  border-right-color: #e8ecee;
}

.reply-form {
  background: #fafbfc;
}

.sidebar .panel {
  border-radius: 3px;
}

@media (max-width: 1080px) {
  .topbar-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .top-links {
    display: none;
  }

  .topic-page {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .topbar-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding: 11px 0;
  }

  .brand {
    min-width: 0;
  }

  .top-actions {
    margin-left: auto;
  }

  .top-search {
    order: 3;
    flex-basis: 100%;
  }

  .topic-table-head {
    display: none;
  }

  .topic-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 14px 16px;
  }

  .topic-counts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: start;
    padding-left: 25px;
  }

  .topic-counts span {
    text-align: left;
  }

  .category-card,
  .category-row {
    grid-template-columns: 10px minmax(0, 1fr) auto;
    padding: 15px 16px;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    width: min(100% - 20px, 1240px);
  }

  .subnav {
    padding: 0 12px;
    gap: 18px;
  }

  .page-shell {
    width: min(100% - 18px, 1180px);
    margin-top: 14px;
  }

  .panel-head,
  .panel-compact .panel-head {
    padding: 15px 14px;
  }

  .panel-actions {
    width: 100%;
  }

  .panel-actions .btn {
    flex: 1 1 auto;
  }

  .top-actions .nav-link {
    width: auto;
  }
}

@media (max-width: 500px) {
  .profile-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .toolbar {
    width: 100%;
  }

  .btn {
    flex: 1 1 auto;
  }
}

/* Forum clone override */
:root {
  --bg: #eef2f1;
  --surface: #ffffff;
  --surface-soft: #f7f9f8;
  --line: #d9e2df;
  --line-strong: #c7d2cf;
  --text: #1e2b29;
  --muted: #66736f;
  --brand: #1f6a5b;
  --brand-strong: #184f45;
  --brand-soft: #e3f1ed;
  --blue: #2d6bbb;
  --amber: #b57a00;
  --teal: #168170;
  --red: #c24f3c;
  --radius: 6px;
  --radius-sm: 4px;
  --focus: 0 0 0 3px rgba(31, 106, 91, 0.14);
}

.forum-page,
.auth-page {
  background:
    linear-gradient(180deg, #f5f7f6 0, #eef2f1 220px, #edf1ef 100%);
}

.topbar {
  gap: 14px;
  padding: 12px 18px;
  background: linear-gradient(180deg, #1f6a5b 0%, #194e44 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  min-width: 0;
  gap: 10px;
}

.brand-icon,
.auth-brand img {
  display: block;
  border-radius: 7px;
  flex: none;
}

.brand strong,
.auth-brand h1 {
  display: block;
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand em,
.auth-brand p {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.76);
}

.top-search {
  flex: 1 1 420px;
  max-width: 760px;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-box input {
  width: 100%;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 0 12px 0 38px;
  background: rgba(255, 255, 255, 0.98);
}

.search-box .icon {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  color: var(--muted);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.nav-link.accent {
  background: rgba(255, 255, 255, 0.14);
}

.nav-link.buttonish {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.subnav {
  display: flex;
  gap: 4px;
  align-items: center;
  overflow-x: auto;
  padding: 0 18px;
  min-height: 40px;
  background: #f8faf9;
  border-bottom: 1px solid var(--line);
}

.subnav a {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--muted);
  white-space: nowrap;
}

.subnav a:hover {
  background: #eef4f2;
  color: var(--brand);
}

.page-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 18px auto 30px;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 16px;
  align-items: start;
}

.page-grid.single-layout,
.page-grid.topic-page {
  grid-template-columns: minmax(0, 1fr);
}

.main-column,
.sidebar {
  min-width: 0;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.panel + .panel {
  margin-top: 16px;
}

.panel-compact .panel-head {
  padding: 12px 14px;
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: #f7f9f8;
  border-bottom: 1px solid var(--line);
}

.panel-head h1,
.panel-head h2,
.panel-head h3,
.panel-head p {
  margin: 0;
}

.panel-head h2,
.panel-head h3 {
  font-size: 1rem;
  line-height: 1.2;
}

.panel-head p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.panel-body {
  padding: 0;
}

.panel-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.topic-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.topic-row:hover {
  background: #fafcfc;
}

.topic-main {
  min-width: 0;
}

.topic-headline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.topic-category {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--category-color, var(--brand));
  font-size: 0.82rem;
  font-weight: 600;
}

.topic-title {
  min-width: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.topic-title:hover,
.topic-author:hover,
.topic-meta a:hover,
.reply-title a:hover,
.side-topic:hover .side-title,
.side-category:hover {
  color: var(--brand);
}

.topic-snippet {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.topic-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

.topic-author {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c0ccc8;
}

.topic-counts {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  text-align: center;
}

.topic-counts span {
  display: grid;
  gap: 2px;
  min-width: 38px;
}

.topic-counts strong {
  font-size: 0.98rem;
  color: var(--text);
}

.topic-counts em {
  font-style: normal;
  font-size: 0.76rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.category-card {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.category-card:hover {
  border-color: var(--line-strong);
  background: #fbfcfc;
}

.category-color,
.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.category-copy strong {
  display: block;
  font-size: 0.98rem;
}

.category-copy p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.category-stats {
  text-align: right;
}

.category-stats b {
  display: block;
  font-size: 1rem;
}

.category-stats span {
  color: var(--muted);
  font-size: 0.8rem;
}

.auth-shell {
  width: min(1024px, calc(100% - 28px));
  margin: 32px auto;
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.auth-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 28px;
  background: linear-gradient(180deg, #1f6a5b 0%, #184f45 100%);
  color: #fff;
}

.auth-brand p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.auth-panel {
  padding: 26px;
}

.auth-panel h2 {
  margin: 0;
  font-size: 1.2rem;
}

.auth-desc,
.auth-switch {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.auth-switch {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.auth-switch a {
  color: var(--brand);
}

.auth-form,
.editor-form,
.reply-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field > span {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
}

.input,
.textarea,
select.input {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  padding: 10px 12px;
  outline: none;
}

.input:focus,
.textarea:focus,
select.input:focus,
.search-box input:focus {
  border-color: #8fc1b5;
  box-shadow: var(--focus);
}

.textarea {
  min-height: 160px;
  resize: vertical;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-row.end {
  justify-content: flex-end;
}

.btn,
.action-btn,
.mini-like {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
}

.btn-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.btn-ghost {
  background: #fff;
}

.btn:hover,
.action-btn:hover,
.mini-like:hover {
  border-color: #b5c7c3;
}

.btn-primary:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
}

.icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.icon svg {
  width: 16px;
  height: 16px;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--avatar-color, var(--brand));
  color: #fff;
  font-weight: 700;
  line-height: 1;
  flex: none;
}

.topic-panel .panel-head,
.profile-hero .panel-body {
  padding-bottom: 14px;
}

.topic-title-head h1 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.25;
}

.topic-breadcrumbs,
.topic-head-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.84rem;
}

.topic-head-meta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topic-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.action-btn.active,
.mini-like.active {
  border-color: rgba(31, 106, 91, 0.45);
  background: #eef8f5;
  color: var(--brand);
}

.topic-body {
  display: grid;
  gap: 0;
}

.post-list {
  display: grid;
}

.post {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.post-user {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  background: #fafcfc;
  color: var(--muted);
}

.post-user a {
  font-weight: 600;
  color: var(--text);
}

.post-user span {
  font-size: 0.84rem;
}

.post-content {
  padding: 18px 18px 16px;
}

.post-text {
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.72;
}

.post-text a {
  color: var(--blue);
}

.post-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

.reply-form {
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
  background: #fafcfc;
}

.reply-form h3 {
  margin: 0;
  font-size: 1rem;
}

.reply-gate,
.locked-note,
.empty-state {
  padding: 16px 18px;
  color: var(--muted);
}

.reply-gate a {
  color: var(--brand);
}

.locked-note {
  border-top: 1px solid var(--line);
  background: #f7f6f4;
}

.side-list,
.side-categories,
.stats-grid,
.author-box {
  display: grid;
  gap: 10px;
  padding: 14px 16px 16px;
}

.side-topic,
.side-category {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.side-topic:last-child,
.side-category:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.side-title {
  min-width: 0;
  color: var(--text);
}

.side-meta,
.side-category em {
  color: var(--muted);
  font-size: 0.8rem;
  font-style: normal;
}

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

.stats-grid div,
.profile-stats div {
  display: grid;
  gap: 2px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.stats-grid strong,
.profile-stats strong {
  font-size: 1.2rem;
}

.stats-grid span,
.profile-stats span {
  color: var(--muted);
  font-size: 0.82rem;
}

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

.author-box strong {
  display: block;
}

.author-box p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.profile-hero .panel-body {
  padding: 18px 16px;
}

.profile-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.profile-copy h2 {
  margin: 0;
  font-size: 1.3rem;
}

.profile-copy p,
.profile-bio,
.reply-snippet {
  margin: 6px 0 0;
  color: var(--muted);
}

.profile-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.profile-bio {
  padding: 16px;
  line-height: 1.7;
}

.reply-preview {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}

.reply-preview:first-child {
  border-top: 0;
}

.reply-title a {
  color: var(--text);
  font-weight: 600;
}

.reply-meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.reply-snippet {
  margin-top: 6px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.flash-stack {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.flash {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.flash.success {
  border-color: rgba(22, 129, 112, 0.28);
  background: #edf8f5;
  color: #0d5f50;
}

.flash.error {
  border-color: rgba(194, 79, 60, 0.28);
  background: #fff2ef;
  color: #9a3a2a;
}

.flash.info {
  border-color: rgba(45, 107, 187, 0.24);
  background: #eef5fc;
  color: #234b84;
}

.flash.warning {
  border-color: rgba(181, 122, 0, 0.26);
  background: #fff7e7;
  color: #8a5c00;
}

@media (max-width: 1080px) {
  .page-grid,
  .auth-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .sidebar {
    order: 2;
  }
}

@media (max-width: 820px) {
  .topbar {
    flex-wrap: wrap;
  }

  .top-search {
    order: 3;
    width: 100%;
    max-width: none;
  }

  .top-actions {
    width: 100%;
    justify-content: flex-end;
  }

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

  .topic-counts {
    justify-content: flex-start;
  }

  .post-user {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

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

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 18px, 1280px);
    margin-top: 14px;
  }

  .category-grid,
  .profile-stats,
  .stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .panel-head,
  .panel-compact .panel-head,
  .topic-row,
  .post-content,
  .post-user,
  .reply-form,
  .side-list,
  .side-categories,
  .author-box,
  .profile-hero .panel-body,
  .profile-bio {
    padding-left: 12px;
    padding-right: 12px;
  }

  .auth-panel,
  .auth-brand {
    padding: 20px 18px;
  }

  .btn,
  .action-btn,
  .mini-like,
  .nav-link {
    width: 100%;
    justify-content: center;
  }
}

/* Source screenshot match pass */
:root {
  --bg: #fff;
  --surface: #fff;
  --surface-soft: #fafafa;
  --line: #e6e6e6;
  --line-strong: #d5d5d5;
  --text: #222;
  --muted: #7f8790;
  --brand: #008fd3;
  --brand-strong: #007bbb;
  --brand-soft: #eef7fc;
  --radius: 0;
  --shadow: none;
}

html,
body,
body.forum-page {
  background: #fff;
  color: #222;
  font-family: Arial, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.35;
}

.topbar {
  position: relative;
  display: block;
  height: 70px;
  padding: 0;
  background: #fafafa;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
}

.topbar-inner {
  width: min(1110px, calc(100% - 172px));
  height: 70px;
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.brand,
.brand-logo-only {
  min-width: 0;
  gap: 0;
  color: #222;
}

.brand-logo-only {
  width: 40px;
  height: 44px;
  display: inline-flex;
  align-items: center;
}

.brand-logo-only .brand-icon,
.brand-icon {
  border-radius: 0;
  background: transparent;
}

.brand strong,
.brand em,
.top-links,
.top-search {
  display: none !important;
}

.topbar-spacer {
  flex: 1 1 auto;
}

.top-actions {
  width: auto;
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.inline-form {
  display: inline-flex;
}

.nav-link {
  width: auto;
  height: 26px;
  min-height: 0;
  padding: 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #6f7780;
  font-size: 13px;
  font-weight: 400;
  line-height: 26px;
}

.nav-link .icon,
.nav-link .icon svg {
  width: 12px;
  height: 12px;
}

.nav-link:hover,
.nav-link.active {
  background: transparent;
  color: #008fd3;
}

.nav-link.accent {
  height: 26px;
  padding: 0 10px;
  background: #008fd3;
  border: 0;
  color: #fff;
  font-weight: 700;
}

.nav-link.accent:hover {
  background: #007bbb;
  color: #fff;
}

.nav-link.accent .icon,
.nav-link.accent .icon svg {
  color: #fff;
}

.header-icon {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #b9babd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-icon:hover {
  background: transparent;
  color: #909399;
}

.header-icon .icon,
.header-icon .icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.8;
}

.menu-icon .icon,
.menu-icon .icon svg {
  width: 32px;
  height: 32px;
}

.top-search-dropdown {
  position: relative;
  flex: none;
  height: 34px;
  z-index: 800;
}

.top-search-dropdown > summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.top-search-dropdown > summary::-webkit-details-marker {
  display: none;
}

.top-search-dropdown > summary:focus {
  outline: 0;
}

.top-search-dropdown > summary:focus-visible {
  outline: 1px solid #08c;
  outline-offset: 2px;
}

.top-search-dropdown[open] > .search-icon {
  color: #8c9094;
}

.top-search-panel {
  position: absolute;
  top: 42px;
  right: -44px;
  width: min(430px, calc(100vw - 32px));
  padding: 8px;
  background: #fff;
  border: 1px solid #d8d8d8;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  z-index: 1200;
}

.top-search-panel::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 58px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid #d8d8d8;
  border-top: 1px solid #d8d8d8;
  transform: rotate(45deg);
}

.top-search-form {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 64px;
  align-items: center;
  height: 42px;
  background: #fff;
  border: 1px solid #cfd4d8;
}

.top-search-form-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9aa0a6;
}

.top-search-form-icon .icon,
.top-search-form-icon .icon svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.4;
}

.top-search-form input {
  width: 100%;
  min-width: 0;
  height: 40px;
  border: 0;
  outline: 0;
  padding: 0 8px 0 0;
  color: #222;
  background: transparent;
  font-size: 15px;
}

.top-search-form input::placeholder {
  color: #8b8f94;
}

.top-search-form input:focus {
  box-shadow: none;
}

.top-search-form button {
  height: 40px;
  border: 0;
  border-left: 1px solid #e0e0e0;
  background: #f7f7f7;
  color: #08c;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.top-search-form button:hover {
  background: #eef8ff;
}

.search-page-form {
  margin: 0 0 14px;
  padding: 0 0 14px;
  border-bottom: 1px solid #e6e6e6;
}

.search-page-box {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  width: min(680px, 100%);
  height: 42px;
  background: #fff;
  border: 1px solid #cfd4d8;
}

.search-page-box > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9aa0a6;
}

.search-page-box > span .icon,
.search-page-box > span .icon svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.4;
}

.search-page-box input {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 8px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #222;
  font-size: 14px;
}

.search-page-box input:focus {
  box-shadow: none;
}

.search-page-box .btn {
  height: 40px;
  border-radius: 0;
  padding: 0 18px;
}

@media (max-width: 760px) {
  .top-search-panel {
    right: -38px;
    width: calc(100vw - 22px);
  }

  .top-search-panel::before {
    right: 51px;
  }

  .top-search-form {
    grid-template-columns: 32px minmax(0, 1fr) 56px;
  }

  .top-search-form button {
    font-size: 13px;
  }
}

.subnav {
  width: min(1110px, calc(100% - 172px));
  min-height: 0;
  margin: 27px auto 0;
  padding: 0;
  display: block;
  overflow: visible;
  background: #fff;
  border: 0;
  box-shadow: none;
}

.subnav-inner {
  height: 31px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.subnav a,
.subnav-tab,
.category-filter {
  height: 30px;
  padding: 0 13px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.category-filter {
  gap: 7px;
  padding: 0 8px !important;
  border: 1px solid #919191 !important;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
}

.category-filter-arrow {
  color: #222;
  font-size: 11px;
  line-height: 1;
}

.subnav a:hover,
.subnav-tab:hover,
.category-filter:hover {
  background: transparent;
  color: #111;
}

.subnav a.active,
.subnav-tab.active {
  background: #ff5a2b;
  border: 0;
  color: #fff;
  font-weight: 400;
}

.subnav a.active:hover,
.subnav-tab.active:hover {
  background: #ff5a2b;
  color: #fff;
}

.page-shell {
  width: min(1110px, calc(100% - 172px));
  margin: 25px auto 48px;
}

.page-grid,
.home .page-grid,
.top .page-grid,
.category .page-grid,
.search .page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.main-column {
  min-width: 0;
}

.home .sidebar,
.top .sidebar,
.category .sidebar,
.search .sidebar {
  display: none;
}

.home .panel,
.top .panel,
.category .panel,
.search .panel {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.home .panel-head,
.top .panel-head,
.category .panel-head,
.search .panel-head {
  display: none;
}

.home .panel-body,
.top .panel-body,
.category .panel-body,
.search .panel-body {
  padding: 0;
  background: transparent;
}

.topic-table-head {
  height: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px 58px 76px 84px;
  gap: 0;
  align-items: end;
  padding: 0 10px 12px;
  background: transparent;
  border-bottom: 3px solid #e6e6e6;
  color: #7f8790;
  font-size: 14px;
  font-weight: 400;
}

.topic-table-head span:first-child {
  text-align: left;
}

.topic-table-head span:nth-child(2) {
  color: transparent;
}

.topic-table-head span:not(:first-child) {
  text-align: center;
}

.topic-row {
  min-height: 67px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px 58px 76px 84px;
  gap: 0;
  align-items: center;
  padding: 10px 10px 9px;
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
}

.topic-row:last-child {
  border-bottom: 1px solid #e6e6e6;
}

.topic-row:hover {
  background: #f8f8f8;
}

.topic-row.is-pinned {
  background: #fff;
}

.topic-row.is-pinned .topic-title {
  color: #7f8790;
}

.topic-main {
  min-width: 0;
  display: block;
}

.topic-headline {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 5px;
  line-height: 1.25;
}

.topic-title {
  order: 1;
  min-width: 0;
  max-width: 100%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #111;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.topic-title:hover {
  color: #008fd3;
}

.topic-status-icon {
  display: inline-block;
  margin-right: 5px;
  color: #8f969d;
  font-size: 13px;
  line-height: 1;
  vertical-align: 1px;
}

.topic-tag {
  order: 2;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #8a8f94;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.topic-category {
  order: 3;
  flex-basis: 100%;
  height: 18px;
  margin-top: 1px;
  padding: 0;
  gap: 5px;
  border-radius: 0;
  background: transparent;
  color: #3e526e;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

.topic-category:hover {
  color: #008fd3;
}

.topic-category-dot {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: var(--category-color, #4d6690);
}

.topic-snippet,
.topic-meta {
  display: none !important;
}

.topic-avatars {
  min-width: 0;
  padding-left: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  overflow: hidden;
}

.topic-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topic-avatars .avatar {
  width: 26px !important;
  height: 26px !important;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

.topic-avatars .avatar-more {
  background: #60bea5;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.topic-counts {
  display: contents;
}

.topic-counts span {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.topic-counts strong {
  color: #777;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
}

.topic-counts span:nth-child(2) strong {
  color: #8b765c;
  font-weight: 400;
}

.topic-counts span:nth-child(3) strong {
  color: #7f8790;
  font-weight: 400;
}

.topic-counts em {
  display: none;
}

.topic-feed {
  display: block;
}

.infinite-loader {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
  color: #8b9298;
  font-size: 13px;
  line-height: 20px;
}

.infinite-loader.is-idle {
  color: transparent;
}

.infinite-loader.is-error {
  color: #c84c3a;
}

.infinite-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #d9e0e5;
  border-top-color: #008fd3;
  border-radius: 50%;
  animation: infinite-spin 0.8s linear infinite;
}

.infinite-loader.is-idle .infinite-spinner,
.infinite-loader.is-done .infinite-spinner,
.infinite-loader.is-error .infinite-spinner {
  display: none;
}

.infinite-sentinel {
  width: 100%;
  height: 1px;
}

@keyframes infinite-spin {
  to {
    transform: rotate(360deg);
  }
}

.categories .page-grid {
  grid-template-columns: minmax(0, 1fr);
}

.categories .panel {
  border-radius: 0;
  box-shadow: none;
}

.category-card,
.category-row {
  border-radius: 0;
}

@media (max-width: 960px) {
  .topbar-inner,
  .subnav,
  .page-shell {
    width: calc(100% - 28px);
  }

  .topic-table-head {
    grid-template-columns: minmax(0, 1fr) 120px 50px 62px 74px;
  }

  .topic-row {
    grid-template-columns: minmax(0, 1fr) 120px 50px 62px 74px;
  }
}

@media (max-width: 760px) {
  .topbar {
    height: 58px;
  }

  .topbar-inner {
    height: 58px;
    min-height: 58px;
  }

  .nav-link.user-link span,
  .nav-link.buttonish span {
    display: none;
  }

  .subnav {
    margin-top: 18px;
    overflow-x: auto;
  }

  .subnav-inner {
    min-width: max-content;
  }

  .topic-table-head {
    display: none;
  }

  .topic-row {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 13px 0 11px;
  }

  .topic-title {
    white-space: normal;
  }

  .topic-avatars {
    padding-left: 0;
  }

  .topic-counts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .topic-counts span {
    justify-content: flex-start;
  }
}

/* Source category dropdown pass */
.category-dropdown {
  position: relative;
  z-index: 300;
  height: 30px;
  flex: none;
}

.category-dropdown > summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.category-dropdown > summary::-webkit-details-marker {
  display: none;
}

.category-dropdown[open] .category-filter {
  border-color: #08c !important;
  outline: 1px solid #08c;
  outline-offset: -1px;
  box-shadow: 0 0 6px 0 #08c;
}

.category-filter-arrow {
  width: 0;
  height: 0;
  display: inline-block;
  margin-left: 1px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #222;
  transform: translateY(1px);
}

.category-menu {
  position: absolute;
  top: 30px;
  left: 0;
  width: 210px;
  max-height: 560px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e9e9e9;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.category-menu-search {
  height: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  padding: 0.25em 0.5em;
  box-sizing: border-box;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}

.category-menu-search input {
  width: 100%;
  height: 29px;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #333;
  font-size: 13px;
}

.category-menu-search input::placeholder {
  color: #646464;
}

.category-menu-search button {
  width: 24px;
  height: 29px;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #6e7174;
}

.category-menu-search button .icon,
.category-menu-search button .icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.category-menu-list {
  max-height: 520px;
  overflow-y: auto;
  scrollbar-color: #8a8a8a transparent;
  scrollbar-width: auto;
}

.category-menu-list::-webkit-scrollbar {
  width: 10px;
}

.category-menu-list::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: #8a8a8a;
}

.category-menu-list::-webkit-scrollbar-track {
  background: transparent;
}

.subnav .category-menu-item,
.subnav .category-menu-item:hover {
  height: 40px;
  min-height: 40px;
  padding: 0 11px;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  background: #fff;
  color: #646464;
  font-size: 13px;
  font-weight: 400;
  line-height: 40px;
}

.subnav .category-menu-item:hover,
.subnav .category-menu-item:first-child {
  background: #d1f0ff;
}

.subnav .category-menu-all,
.subnav .category-menu-all:hover {
  color: #08c;
  font-weight: 700;
}

.category-menu-all-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-menu-dot {
  width: 9px;
  height: 9px;
  flex: none;
  background: #008fd3;
}

.category-menu-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-menu-count {
  flex: none;
  color: #919191;
  font-size: 13px;
}

@media (max-width: 760px) {
  .subnav {
    overflow: visible;
  }

  .category-menu {
    width: min(210px, calc(100vw - 28px));
    max-height: 560px;
  }

  .category-menu-list {
    max-height: 520px;
  }
}

/* Admin backend */
.admin-page {
  width: min(1240px, calc(100% - 32px));
}

.admin-shell {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-nav {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid #e2e6e8;
  background: #fff;
}

.admin-nav-link {
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-left: 3px solid transparent;
  color: #636d72;
  font-size: 14px;
}

.admin-nav-link:hover,
.admin-nav-link.active {
  background: #f3f8f7;
  border-left-color: #1f6a5b;
  color: #1f6a5b;
}

.admin-content {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.admin-hero-panel .panel-body {
  padding: 16px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.admin-stat {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px;
  border: 1px solid #e6eaec;
  background: #fbfcfc;
}

.admin-stat strong {
  color: #243137;
  font-size: 22px;
  line-height: 1;
}

.admin-stat span,
.admin-muted {
  color: #7f8990;
  font-size: 13px;
}

.admin-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-list {
  display: grid;
}

.admin-list-item {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border-bottom: 1px solid #edf0f1;
}

.admin-list-item:hover {
  background: #fafafa;
}

.admin-title {
  min-width: 0;
  color: #202b31;
  font-weight: 600;
}

.admin-title:hover {
  color: #008fd3;
}

.admin-table {
  overflow-x: auto;
}

.admin-table-head,
.admin-table-row {
  min-width: 900px;
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) 96px 74px 74px 120px 190px;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
}

.admin-table-head {
  border-bottom: 3px solid #e6e6e6;
  color: #7f8790;
  font-size: 13px;
}

.admin-table-row {
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
  color: #4f5b61;
  font-size: 14px;
}

.admin-table-row:hover {
  background: #fafafa;
}

.admin-user-cell,
.admin-post-user {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-user-cell div,
.admin-post-user div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.admin-user-cell strong,
.admin-post-user strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-user-cell span,
.admin-post-user span {
  overflow: hidden;
  color: #899399;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-role,
.admin-role-on,
.admin-badges span,
.admin-badges em {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 7px;
  border: 1px solid #e0e6e7;
  background: #f8fafb;
  color: #69757b;
  font-style: normal;
  font-size: 12px;
}

.admin-role-on,
.admin-badges span {
  border-color: #cfe2dc;
  background: #edf7f4;
  color: #1f6a5b;
}

.admin-inline-form,
.admin-topic-actions,
.admin-post-action,
.admin-form-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-select,
.admin-small-btn,
.admin-danger-btn,
.admin-small-link {
  min-height: 30px;
  border: 1px solid #cfd8dc;
  background: #fff;
  color: #3d4a50;
  font-size: 13px;
}

.admin-select {
  width: 88px;
  padding: 0 8px;
}

.admin-small-btn,
.admin-danger-btn,
.admin-small-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
}

.admin-small-btn:hover,
.admin-small-link:hover {
  border-color: #9fbbb5;
  color: #1f6a5b;
}

.admin-danger-btn {
  border-color: #e3c4bd;
  color: #ba4b36;
}

.admin-danger-btn:hover {
  border-color: #d96a52;
  background: #fff7f5;
}

.admin-create-block {
  padding: 14px;
  background: #fbfcfc;
}

.admin-edit-grid {
  display: grid;
  grid-template-columns: minmax(120px, 1.1fr) minmax(120px, 1.1fr) 86px 96px minmax(220px, 2fr) auto;
  gap: 10px;
  align-items: end;
}

.admin-edit-grid label {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.admin-edit-grid label > span {
  color: #6b767b;
  font-size: 12px;
}

.admin-color-input {
  min-width: 62px;
  height: 40px;
  padding: 4px;
}

.admin-category-list {
  display: grid;
}

.admin-category-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding: 14px;
  border-bottom: 1px solid #e8ecee;
  background: #fff;
}

.admin-category-row:hover {
  background: #fbfbfb;
}

.admin-category-meta {
  display: grid;
  justify-items: center;
  gap: 1px;
  color: #7f8990;
  font-size: 12px;
}

.admin-category-meta strong {
  color: #2d383d;
  font-size: 15px;
}

.admin-delete-form {
  display: flex;
  align-items: end;
  min-height: 40px;
}

.admin-topic-editor {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.admin-topic-editor .textarea {
  min-height: 260px;
}

.admin-check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #4f5b61;
  font-size: 14px;
}

.admin-check-row label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.admin-topic-list,
.admin-post-list {
  display: grid;
}

.admin-topic-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
}

.admin-topic-row:hover,
.admin-post-row:hover {
  background: #fafafa;
}

.admin-topic-main {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.admin-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.admin-topic-actions form {
  display: inline-flex;
}

.admin-post-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
}

.admin-post-body {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.admin-post-body p {
  margin: 0;
  color: #69747a;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .admin-shell,
  .admin-two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-nav {
    position: static;
    display: flex;
    overflow-x: auto;
  }

  .admin-nav-link {
    flex: 0 0 auto;
    border-left: 0;
    border-bottom: 2px solid transparent;
  }

  .admin-nav-link.active {
    border-bottom-color: #1f6a5b;
  }

  .admin-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .admin-category-row,
  .admin-topic-row,
  .admin-post-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-topic-actions,
  .admin-post-action,
  .admin-delete-form {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .admin-page {
    width: calc(100% - 20px);
  }

  .admin-stats,
  .admin-edit-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-table-head,
  .admin-table-row {
    min-width: 760px;
  }
}
