:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light dark;
  color: #202522;
  background: #f4f6f5;
  font-synthesis: none;
  letter-spacing: 0;
  --bg: #f4f6f5;
  --surface: #ffffff;
  --surface-muted: #eef1ef;
  --border: #dce2de;
  --border-strong: #c9d2cc;
  --text: #202522;
  --muted: #66716a;
  --accent: #176b57;
  --accent-strong: #105443;
  --accent-soft: #e5f1ed;
  --danger: #a9342f;
  --danger-soft: #fff0ee;
  --focus: #247e68;
  --sidebar-width: 232px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

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

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: .55;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.spin,
.boot-spinner {
  animation: spin .8s linear infinite;
}

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

.boot-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.boot-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-strong);
  border-top-color: var(--accent);
  border-radius: 50%;
}

.login-panel {
  width: min(420px, calc(100% - 28px));
  margin: 10vh auto 40px;
  padding: 24px;
  display: grid;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(29, 43, 36, .08);
}

.login-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}

.login-heading h1,
.status-panel h1 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.35;
}

.hint,
.status-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.login-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
  color: #4f5a53;
  font-size: 13px;
}

.field input,
.setting-control,
.revision-select {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
}

.field input {
  height: 42px;
}

.field input:hover,
.setting-control:hover,
.revision-select:hover {
  border-color: #aebbb3;
}

.primary,
.secondary {
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
  white-space: nowrap;
}

.primary {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.primary:hover:not(:disabled) {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
}

.secondary {
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: #303833;
}

.secondary:hover:not(:disabled) {
  border-color: #aebbb3;
  background: var(--surface-muted);
}

.form-error,
.page-error {
  border-left: 3px solid var(--danger);
  background: var(--danger-soft);
  color: #852a25;
  font-size: 13px;
}

.form-error {
  padding: 9px 11px;
}

.status-panel {
  justify-items: start;
}

.status-panel > svg {
  color: var(--danger);
}

.admin-shell {
  min-height: 100vh;
}

.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  width: var(--sidebar-width);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border-right: 1px solid var(--border);
  background: #fbfcfb;
}

.sidebar-brand {
  min-height: 64px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.brand-mark,
.dialog-mark {
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 7px;
}

.sidebar-brand > span:nth-child(2) {
  min-width: 0;
  display: grid;
  line-height: 1.25;
}

.sidebar-brand strong {
  font-size: 15px;
}

.sidebar-brand small {
  color: var(--muted);
  font-size: 11px;
}

.sidebar-brand .icon-button {
  display: none;
}

.sidebar-nav {
  min-height: 0;
  overflow-y: auto;
  padding: 10px;
}

.nav-group {
  padding: 7px 0 12px;
}

.nav-group h2 {
  margin: 0 0 4px;
  padding: 0 10px;
  color: #7a847e;
  font-size: 11px;
  font-weight: 650;
}

.nav-group a {
  min-height: 38px;
  padding: 8px 9px;
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr) 15px;
  align-items: center;
  gap: 9px;
  border-radius: 6px;
  color: #4f5953;
  font-size: 13px;
  text-decoration: none;
}

.nav-group a:hover {
  background: var(--surface-muted);
  color: var(--text);
}

.nav-group a.active {
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 650;
}

.nav-chevron {
  color: #9aa49e;
}

.sidebar-version {
  padding: 13px 18px;
  border-top: 1px solid var(--border);
  color: #89928d;
  font-size: 11px;
}

.nav-overlay {
  display: none;
}

.admin-workspace {
  min-width: 0;
  min-height: 100vh;
  margin-left: var(--sidebar-width);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 64px;
  padding: 9px clamp(16px, 2.6vw, 34px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
}

.header-title,
.header-actions {
  min-width: 0;
  display: flex;
  align-items: center;
}

.header-title {
  gap: 9px;
}

.header-title > .icon-button {
  display: none;
}

.header-title h1 {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--surface-muted);
  color: var(--accent);
}

.header-actions {
  flex: 0 0 auto;
  gap: 5px;
}

.icon-button {
  width: 36px;
  height: 36px;
  padding: 0;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #5c6760;
}

.icon-button:hover:not(:disabled) {
  background: var(--surface-muted);
  color: var(--text);
}

.account-link {
  min-width: 0;
  max-width: 210px;
  height: 42px;
  margin-right: 3px;
  padding: 4px 7px 4px 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  color: inherit;
  text-decoration: none;
}

.account-link:hover {
  background: var(--surface-muted);
}

.account-link img,
.account-link > .avatar-fallback {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.account-copy {
  min-width: 0;
  display: grid;
  line-height: 1.25;
}

.account-copy strong,
.account-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-copy strong {
  font-size: 12px;
}

.account-copy small {
  color: var(--muted);
  font-size: 11px;
}

.admin-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 12px;
}

.page-intro {
  min-height: 31px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.page-intro p {
  margin: 0;
  line-height: 1.55;
}

.page-intro > span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.notice,
.page-error {
  min-height: 42px;
  margin: 10px 0;
  padding: 9px 11px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.notice {
  border: 1px solid #cbe0d8;
  border-radius: 6px;
  background: #edf7f3;
  color: #225c4e;
  font-size: 13px;
}

.notice button,
.page-error button {
  border: 0;
  background: transparent;
  color: inherit;
}

.record-list {
  border-top: 1px solid var(--border);
}

.comments-toolbar {
  margin: 12px 0;
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(210px, 1.35fr) minmax(190px, 1fr) minmax(112px, .55fr) minmax(112px, .55fr) auto;
  align-items: end;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
}

.comment-filter {
  min-width: 0;
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
}

.comment-filter > input,
.comment-filter > select,
.comment-search-control {
  width: 100%;
  min-width: 0;
  height: 38px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
}

.comment-filter > input,
.comment-filter > select {
  padding: 7px 9px;
}

.comment-search-control {
  padding: 0 9px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  color: var(--muted);
}

.comment-search-control input {
  width: 100%;
  min-width: 0;
  height: 36px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.comment-filter > input:hover,
.comment-filter > select:hover,
.comment-search-control:hover,
.comment-search-control:focus-within {
  border-color: #aebbb3;
}

.comment-search-control:focus-within {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.comment-filter-actions {
  display: flex;
  gap: 7px;
}

.comment-batchbar,
.comment-list-summary,
.comment-pagination {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.comment-batchbar {
  min-height: 46px;
  padding: 7px 10px;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface-muted);
}

.comment-batchbar > span:first-child {
  margin-right: auto;
  color: var(--text);
  font-weight: 650;
}

.comment-batchbar button {
  min-height: 32px;
  padding: 5px 9px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
}

.comment-batchbar button:hover:not(:disabled) {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.comment-batchbar .danger-action {
  color: var(--danger);
}

.comment-list-summary {
  min-height: 40px;
  justify-content: space-between;
}

.comment-list-summary label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
}

.comment-list-summary input,
.comment-select {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--accent);
}

.comment-row,
.peer-row {
  display: grid;
  gap: 12px;
  padding: 16px 2px;
  border-bottom: 1px solid var(--border);
}

.comment-row {
  grid-template-columns: 38px minmax(0, 1fr) auto;
}

.comment-admin-row {
  grid-template-columns: 18px 38px minmax(0, 1fr) auto;
}

.comment-select {
  margin-top: 11px;
}

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

.record-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-fallback {
  display: grid;
  place-items: center;
  background: #dfe6e2;
  color: #4c5b53;
  font-size: 13px;
  font-weight: 700;
}

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

.record-meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px 11px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.record-meta strong {
  color: var(--text);
  font-size: 14px;
}

.record-meta > span,
.record-meta time {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.status-tag {
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.comment-body {
  margin-top: 8px;
  overflow-wrap: anywhere;
  color: #303733;
  font-size: 14px;
  line-height: 1.7;
}

.comment-body > :first-child {
  margin-top: 0;
}

.comment-body > :last-child {
  margin-bottom: 0;
}

.comment-body pre {
  max-width: 100%;
  overflow: auto;
  padding: 11px;
  border-radius: 6px;
  background: #ecefed;
}

.comment-body img {
  max-width: 100%;
  height: auto;
}

.record-time {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.row-actions {
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.comment-pagination {
  min-height: 54px;
  justify-content: flex-end;
}

.empty-state {
  min-height: 320px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.settings-subnav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
}

.settings-subnav a {
  padding: 10px 12px;
  flex: 0 0 auto;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}

.settings-subnav a:hover {
  color: var(--text);
}

.settings-subnav a.active {
  border-bottom-color: var(--accent);
  color: var(--accent);
  font-weight: 650;
}

.setting-group {
  padding: 24px 0;
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  border-bottom: 1px solid var(--border);
}

.setting-heading h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.setting-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.setting-content {
  min-width: 0;
}

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

.setting-field {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 6px;
}

.setting-field.wide-field {
  grid-column: 1 / -1;
}

.setting-label {
  color: #4f5953;
  font-size: 13px;
}

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

.setting-note {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.toggle-field {
  min-height: 40px;
  padding: 7px 0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.setting-toggle {
  width: 40px;
  height: 22px;
  margin: 0;
  accent-color: var(--accent);
}

.readonly-field {
  padding: 7px 0;
}

.setting-output {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.setting-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.migration-actions {
  grid-column: 1 / -1;
}

.settings-savebar {
  position: sticky;
  bottom: 0;
  z-index: 15;
  margin-top: 4px;
  padding: 12px 0;
  display: grid;
  grid-template-columns: minmax(145px, 1fr) minmax(170px, 250px) auto auto auto;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border);
  background: rgba(244, 246, 245, .97);
  backdrop-filter: blur(10px);
}

.save-state {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 12px;
}

.revision-select {
  min-height: 38px;
}

.admin-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0 26px;
  color: var(--muted);
  font-size: 12px;
}

.admin-footer a {
  color: var(--accent);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  padding: 18px;
  display: grid;
  place-items: center;
  background: rgba(17, 23, 20, .5);
}

.binding-dialog {
  width: min(450px, 100%);
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 22px 65px rgba(18, 30, 24, .2);
}

.dialog-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.binding-dialog h2 {
  margin: 16px 0 8px;
  font-size: 19px;
}

.binding-dialog p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.dialog-actions {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
  gap: 9px;
}

.dialog-actions button {
  min-width: 100px;
}

@media (max-width: 980px) {
  .comments-toolbar {
    grid-template-columns: minmax(210px, 1fr) minmax(180px, 1fr) repeat(2, minmax(112px, .55fr));
  }

  .comment-filter-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .settings-savebar {
    grid-template-columns: minmax(120px, 1fr) minmax(160px, 220px) auto auto;
  }

  .settings-savebar .primary {
    grid-column: 3 / 5;
  }
}

@media (max-width: 880px) {
  .admin-sidebar {
    width: min(272px, calc(100vw - 44px));
    transform: translateX(-102%);
    box-shadow: 14px 0 40px rgba(18, 30, 24, .14);
    transition: transform .18s ease;
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .sidebar-brand .icon-button,
  .header-title > .icon-button {
    display: grid;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 25;
    display: block;
    border: 0;
    background: rgba(17, 23, 20, .42);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
  }

  .nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

  .admin-workspace {
    margin-left: 0;
  }

  .setting-group {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 680px) {
  .admin-header {
    min-height: 58px;
    padding-inline: 10px;
    gap: 7px;
  }

  .header-title {
    flex: 1 1 auto;
    gap: 5px;
  }

  .route-icon {
    display: none;
  }

  .header-title h1 {
    font-size: 15px;
  }

  .header-actions {
    gap: 1px;
  }

  .account-link {
    max-width: 118px;
    margin-right: 0;
  }

  .account-copy {
    max-width: 72px;
    display: grid;
  }

  .account-copy strong {
    display: none;
  }

  .admin-content,
  .admin-footer {
    width: min(100% - 22px, 1180px);
  }

  .admin-content {
    padding-top: 12px;
  }

  .page-intro {
    align-items: flex-start;
  }

  .comment-row {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .comments-toolbar {
    grid-template-columns: 1fr 1fr;
    padding: 10px;
  }

  .comment-search-filter,
  .comment-filter:nth-child(2),
  .comment-filter-actions {
    grid-column: 1 / -1;
  }

  .comment-filter-actions > * {
    flex: 1 1 0;
  }

  .comment-batchbar > span:first-child {
    width: 100%;
    margin-right: 0;
  }

  .comment-admin-row {
    grid-template-columns: 18px 34px minmax(0, 1fr);
  }

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

  .record-avatar {
    width: 34px;
    height: 34px;
  }

  .comment-row .row-actions {
    grid-column: 2;
  }

  .comment-admin-row .row-actions {
    grid-column: 3;
  }

  .peer-row .row-actions {
    grid-column: 1;
  }

  .row-actions {
    flex-wrap: wrap;
  }

  .setting-grid {
    grid-template-columns: 1fr;
  }

  .setting-field.wide-field {
    grid-column: auto;
  }

  .setting-actions {
    display: grid;
    justify-content: stretch;
  }

  .setting-actions > * {
    width: 100%;
  }

  .settings-savebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .save-state,
  .revision-select,
  .settings-savebar .primary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .comments-toolbar {
    grid-template-columns: 1fr;
  }

  .comment-filter,
  .comment-filter-actions {
    grid-column: 1;
  }

  .comment-batchbar button {
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
  }

  .comment-list-summary,
  .comment-pagination {
    flex-wrap: wrap;
  }

  .comment-pagination .secondary {
    width: 100%;
  }

  .login-panel {
    margin-top: 28px;
    padding: 20px;
  }

  .account-link img,
  .account-link > .avatar-fallback {
    display: none;
  }

  .account-link {
    width: 70px;
    padding-inline: 4px;
    justify-content: center;
  }

  .account-copy {
    max-width: 62px;
  }

  .settings-savebar {
    grid-template-columns: 1fr;
  }

  .settings-savebar > * {
    grid-column: 1 !important;
    width: 100%;
  }

  .dialog-actions {
    flex-direction: column-reverse;
  }

  .dialog-actions button {
    width: 100%;
  }
}

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

@media (prefers-color-scheme: dark) {
  :root {
    color: #edf2ef;
    background: #111513;
    --bg: #111513;
    --surface: #181d1a;
    --surface-muted: #252c28;
    --border: #343c37;
    --border-strong: #465049;
    --text: #edf2ef;
    --muted: #a4afa8;
    --accent: #70cbb2;
    --accent-strong: #91ddc7;
    --accent-soft: #1c332c;
    --danger: #e36b64;
    --danger-soft: #351b1a;
    --focus: #70cbb2;
  }

  .admin-sidebar {
    background: #151a17;
  }

  .admin-header {
    background: rgba(24, 29, 26, .96);
  }

  .field,
  .setting-label {
    color: #c7d0ca;
  }

  .secondary {
    color: var(--text);
  }

  .form-error,
  .page-error {
    color: #f0aaa5;
  }

  .notice {
    border-color: #315849;
    background: #173027;
    color: #a7dfcc;
  }

  .avatar-fallback {
    background: #2b332f;
    color: #d7dfda;
  }

  .comment-body {
    color: #dbe2de;
  }

  .comment-body pre {
    background: #222824;
  }

  .settings-savebar {
    background: rgba(17, 21, 19, .97);
  }
}
