:root {
  color-scheme: light dark;

  --color-bg: #f7f7f8;
  --color-fg: #111;
  --color-surface: #fff;
  --color-surface-2: #f6f7f9;
  --color-surface-3: #f3f3f3;
  --color-surface-inset: #f5f6f8;

  --color-border: #e1e3e6;
  --color-border-subtle: #e6e6e6;
  --color-border-strong: #ccc;
  --color-divider: #eceef2;

  --color-muted: #666;
  --color-muted-2: #777;
  --color-muted-3: #9aa0a6;

  --color-link: #2b59c3;

  --color-primary-bg: #111;
  --color-primary-fg: #fff;
  --color-secondary-bg: #e5e5e5;
  --color-secondary-fg: #111;
  --color-danger-bg: #b00020;
  --color-danger-fg: #fff;
  --color-accent: #f59e0b;

  --color-code-bg: #f0f0f0;
  --color-chip-bg: #f1f2f4;
  --color-table-header-bg: #f7f8fa;
  --color-row-hover: #f5f6f8;

  --color-nav-bg: #ffffff;
  --color-nav-border: #e4e6eb;
  --color-nav-active-bg: #3a3a3a;
  --color-nav-active-fg: #fff;
  --color-nav-active-border: #3a3a3a;

  --title-menu-fg: var(--color-muted-2);
  --title-menu-fg-active: var(--color-fg);
  --title-menu-bg: transparent;
  --title-menu-hover-bg: var(--color-surface-inset);
  --title-menu-border: var(--color-border);
  --title-menu-panel-bg: var(--color-surface-inset);
  --title-menu-item-hover-bg: #e9edf2;
  --title-menu-shadow: 0 12px 18px rgba(0, 0, 0, 0.08);

  --form-border-color: var(--color-border-strong);

  --priority-high: #d14343;
  --priority-medium: #f59e0b;
  --priority-low: #16a34a;
  --priority-none: var(--color-muted-2);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --color-bg: #0f1217;
    --color-fg: #e9edf2;
    --color-surface: #141821;
    --color-surface-2: #0f141c;
    --color-surface-3: #1b212c;
    --color-surface-inset: #1a202b;

    --color-border: #2a3342;
    --color-border-subtle: #242c3a;
    --color-border-strong: #3a4557;
    --color-divider: #222a38;

    --color-muted: #b3bdcc;
    --color-muted-2: #9aa6b8;
    --color-muted-3: #8a95a6;

    --color-link: #8ab4ff;

    --color-primary-bg: #e9edf2;
    --color-primary-fg: #111;
    --color-secondary-bg: #2a3342;
    --color-secondary-fg: #e9edf2;
    --color-danger-bg: #dc2626;
    --color-danger-fg: #fff;
    --color-accent: #f59e0b;

    --color-code-bg: #0f141c;
    --color-chip-bg: #1b212c;
    --color-table-header-bg: #0f141c;
    --color-row-hover: #1a202b;

    --color-nav-bg: #0f141c;
    --color-nav-border: #242c3a;
    --color-nav-active-bg: #2a3342;
    --color-nav-active-fg: #e9edf2;
    --color-nav-active-border: #2a3342;

    --title-menu-item-hover-bg: #232b38;
    --title-menu-shadow: 0 12px 18px rgba(0, 0, 0, 0.35);
  }
}

:root[data-theme="light"] {
  color-scheme: light;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --color-bg: #0f1217;
  --color-fg: #e9edf2;
  --color-surface: #141821;
  --color-surface-2: #0f141c;
  --color-surface-3: #1b212c;
  --color-surface-inset: #1a202b;

  --color-border: #2a3342;
  --color-border-subtle: #242c3a;
  --color-border-strong: #3a4557;
  --color-divider: #222a38;

  --color-muted: #b3bdcc;
  --color-muted-2: #9aa6b8;
  --color-muted-3: #8a95a6;

  --color-link: #8ab4ff;

  --color-primary-bg: #e9edf2;
  --color-primary-fg: #111;
  --color-secondary-bg: #2a3342;
  --color-secondary-fg: #e9edf2;
  --color-danger-bg: #dc2626;
  --color-danger-fg: #fff;

  --color-code-bg: #0f141c;
  --color-chip-bg: #1b212c;
  --color-table-header-bg: #0f141c;
  --color-row-hover: #1a202b;

  --color-nav-bg: #0f141c;
  --color-nav-border: #242c3a;
  --color-nav-active-bg: #2a3342;
  --color-nav-active-fg: #e9edf2;
  --color-nav-active-border: #2a3342;

  --title-menu-item-hover-bg: #232b38;
  --title-menu-shadow: 0 12px 18px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 24px;
  background: var(--color-bg);
  color: var(--color-fg);
}

h1 {
  font-size: 16px;
  margin: 0 0 16px 0;
}

.check-list {
  border: 1px solid var(--color-border-subtle);
  border-radius: 8px;
  padding: 8px;
  background: var(--color-surface);
  margin-bottom: 14px;
  max-height: 220px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.check-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin: 0;
  color: var(--color-fg);
}

.check-item input {
  margin: 0;
}

.check-meta {
  font-size: 11px;
  color: var(--color-muted-2);
  padding-left: 22px;
}

button {
  padding: 4px 8px;
  border: none;
  border-radius: 6px;
  background: var(--color-primary-bg);
  color: var(--color-primary-fg);
  cursor: pointer;
  font-size: 13px;
}

.register-submit {
  margin-top: 10px;
}

button.secondary {
  background: var(--color-secondary-bg);
  color: var(--color-secondary-fg);
}

button.danger {
  background: var(--color-danger-bg);
  color: var(--color-danger-fg);
}

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

.row>* {
  flex: 1;
  min-width: 0;
}

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

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
}

.icon-button:hover {
  background: #fff3e6;
  border-color: #ffd4ab;
}

.icon-button:focus-visible {
  outline: 2px solid #fb8b1e;
  outline-offset: 2px;
}

.icon-button svg {
  display: block;
}

.inline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

button.link {
  background: none;
  color: var(--color-link);
  padding: 0;
  border: none;
  text-decoration: underline;
  font-size: 12px;
}

button.danger-link {
  color: #b00020;
}

.thumb-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.thumb-wrap {
  position: relative;
  width: 84px;
  height: 84px;
}

.thumb-grid .thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e1e3e6;
  display: block;
}

.thumb-delete {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: #b00020;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.thumb-delete:hover {
  background: #d11a2a;
}

.thumb-wrap.is-dragging {
  opacity: 0.5;
}

.thumb-wrap.drop-before::before,
.thumb-wrap.drop-after::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  height: 2px;
  background: var(--color-accent);
}

.thumb-wrap.drop-before::before {
  top: -4px;
}

.thumb-wrap.drop-after::after {
  bottom: -4px;
}

.thumb-rename-pop {
  position: absolute;
  z-index: 50;
  min-width: 200px;
  max-width: 280px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--color-border-subtle);
  background: var(--color-surface);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.12);
  display: none;
}

.thumb-rename-pop.is-open {
  display: block;
}

.thumb-rename-input {
  width: 100%;
  min-height: 36px;
}

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

.upload-drop {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  border: 1px dashed var(--color-border-subtle);
  border-radius: 12px;
  background: var(--color-surface-2);
  color: var(--color-muted-2);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.upload-drop input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-drop-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.upload-drop-content strong {
  color: var(--color-fg);
  font-weight: 600;
}

.upload-drop.is-dragover {
  border-color: var(--color-accent);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  background: var(--color-surface);
}

.upload-drop.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.thumb-delete:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-group label {
  display: inline-block;
  margin: 0;
  font-size: 12px;
  color: var(--color-muted);
}

.filter-group select {
  width: auto;
  min-width: 160px;
  margin: 0;
}

.filter-group.project-filter {
  max-width: 240px;
  width: 100%;
}

.filter-group.project-filter select {
  width: 100%;
  min-width: 0;
}

.project-link {
  display: inline;
  color: var(--color-fg);
  text-decoration: none;
}

.project-link:hover,
.project-link:focus {
  text-decoration: underline;
}

.project-link span:first-child {
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.project-link-icon {
  color: var(--color-muted-2);
  display: inline-block;
  margin-left: 6px;
  vertical-align: text-bottom;
  font-size: 12px;
  line-height: 1;
}


.bar {
  margin-bottom: 16px;
  background: var(--color-surface-3);
  border: 1px solid var(--color-border-subtle);
  border-radius: 8px;
  padding: 10px 12px;
}

.bar input {
  margin-bottom: 0;
}

.notice {
  font-size: 13px;
  margin-top: 8px;
}

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

.text-danger {
  color: #b00020;
  font-weight: 400;
}

.notice.success {
  color: #0a7a2f;
}

.notice.error {
  color: #b00020;
}

.notice.warning {
  color: #a05a00;
}

.toast-tray {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: min(360px, calc(100vw - 40px));
  z-index: 9999;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: toast-enter 0.2s ease-out;
}

.toast-text {
  flex: 1;
  line-height: 1.4;
}

.toast-close {
  border: none;
  background: transparent;
  color: inherit;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.toast-success {
  background: #148a3a;
}

.toast-warning {
  background: #d77a00;
}

.toast-error {
  background: #b00020;
}

.toast-info {
  background: #2e4a8b;
}

.toast-exit {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@keyframes toast-enter {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .toast-tray {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}

.api-inspector {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9998;
  font-size: 12px;
  color: var(--color-fg);
}

.api-inspector-toggle {
  background: var(--color-primary-bg);
  color: var(--color-primary-fg);
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.api-inspector-panel {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: min(360px, calc(100vw - 32px));
  max-height: min(420px, calc(100vh - 100px));
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.api-inspector.is-open .api-inspector-panel {
  display: flex;
}

.api-inspector-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: var(--color-surface-2);
  border-bottom: 1px solid var(--color-border);
  font-weight: 600;
}

.api-inspector-close {
  border: none;
  background: transparent;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.api-inspector-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: auto;
}

.api-inspector-empty {
  color: var(--color-muted-2);
  font-size: 12px;
}

.api-inspector-meta {
  font-size: 11px;
  color: var(--color-muted-2);
}

.api-inspector-meta.ok {
  color: #148a3a;
}

.api-inspector-meta.error {
  color: var(--color-danger-bg);
}

.api-inspector-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.api-inspector-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-muted-2);
}

.api-inspector-json {
  margin: 0;
  padding: 8px;
  background: var(--color-code-bg);
  border-radius: 8px;
  max-height: 140px;
  overflow: auto;
  font-size: 11px;
  white-space: pre-wrap;
  word-break: break-word;
}

.api-inspector-copy {
  align-self: flex-start;
  font-size: 11px;
  background: var(--color-surface-2);
  color: var(--color-fg);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 4px 8px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .api-inspector {
    right: 12px;
    bottom: 12px;
  }
}

.links {
  margin-top: 16px;
  font-size: 13px;
}

code {
  background: var(--color-code-bg);
  padding: 2px 6px;
  border-radius: 4px;
}

.markdown-report {
  position: relative;
  background: var(--color-code-bg);
  border: 1px solid var(--color-border-subtle);
  border-radius: 12px;
  margin: 0;
}

.markdown-report pre {
  margin: 0;
  padding: 38px 16px 14px;
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

.markdown-report code {
  display: block;
  background: transparent;
  padding: 0;
}

.markdown-copy {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 11px;
  background: var(--color-surface-2);
  color: var(--color-fg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 4px 8px;
  cursor: pointer;
}

.markdown-copy:hover,
.markdown-copy:focus-visible {
  border-color: var(--color-border-strong);
  background: var(--color-surface);
}

.report-layout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.report-main {
  flex: 1 1 auto;
  min-width: 0;
}

.report-side {
  width: 220px;
  min-width: 180px;
  border: 1px solid var(--color-border-subtle);
  border-radius: 12px;
  padding: 12px;
  background: var(--color-surface-2);
}

.report-side label {
  margin-top: 0;
}

.report-filter {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.report-filter h3 {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted-2);
}

.report-filter .check-row {
  border: none;
  background: transparent;
  padding: 4px 0;
  gap: 8px;
  flex-direction: row;
  align-items: center;
}

.report-filter input[type="checkbox"] {
  margin: 0;
}

.markdown-html {
  border: 1px solid var(--color-border-subtle);
  border-radius: 12px;
  padding: 16px;
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.markdown-html-section h2 {
  margin: 0 0 8px;
  font-size: 16px;
  text-transform: lowercase;
}

.markdown-html-section h3 {
  margin: 12px 0 4px;
  font-size: 14px;
}

.markdown-html-section p {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--color-fg);
  white-space: pre-wrap;
}

@media (max-width: 900px) {
  .report-layout {
    flex-direction: column;
  }

  .report-side {
    width: 100%;
  }
}

.panel {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px;
  font-size: 12px;
  white-space: pre-wrap;
  max-height: 280px;
  overflow: auto;
}

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

.list-item {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: 10px;
  padding: 12px 14px;
  word-break: break-word;
}

.comment-header {
  margin-bottom: 6px;
}

.comment-header .list-title {
  margin-bottom: 0;
}

.comment-body {
  margin-bottom: 4px;
}

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

.comment-editor {
  margin-top: 8px;
}

.comment-editor textarea {
  width: 100%;
  min-height: 88px;
}



.list-item.clickable {
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.list-item.clickable:hover {
  border-color: var(--form-border-color);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.context-menu {
  position: fixed;
  min-width: 180px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  padding: 6px;
  display: none;
  z-index: 1000;
}

.context-menu.open {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.context-menu-heading {
  margin-top: 4px;
  padding: 4px 10px 2px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted-2);
  font-weight: 600;
  pointer-events: none;
}

.context-menu-heading:first-child {
  margin-top: 0;
}

.context-menu-item {
  border: none;
  background: transparent;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--color-fg);
  font-size: 13px;
}

.context-menu-item:hover,
.context-menu-item:focus-visible {
  background: var(--color-surface-2);
  outline: none;
}

.context-menu-item.is-selected {
  background: var(--color-surface-3);
}

.context-menu-item .priority-flag {
  margin-right: 0;
}

.context-menu-dash {
  width: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted-2);
}

.hidden {
  display: none;
}

.team-assignments h2 {
  margin-top: 18px;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 14px;
  margin-top: 10px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-fg);
  margin-bottom: 14px;
}

.checkbox-row input {
  margin: 0;
}

.checkbox-row label {
  margin: 0;
}

.checkbox-row.disabled {
  color: var(--color-muted-3);
}

.checkbox-meta {
  font-size: 11px;
  color: var(--color-muted-3);
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-fg);
  min-width: 0;
}

.check-meta {
  margin-left: 22px;
  font-size: 11px;
  color: var(--color-muted-2);
}

.check-item span {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.check-list .notice {
  margin-top: 0;
}

.team-assignments {
  width: 100%;
}

.team-checklist {
  border: 1px solid var(--color-border-subtle);
  background: var(--color-surface);
  border-radius: 8px;
  padding: 6px 8px;
  max-height: 200px;
  gap: 6px;
}

.team-checklist .check-row {
  padding: 2px 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.team-checklist .check-item {
  width: 100%;
  gap: 6px;
  font-size: 12px;
}

.team-checklist .check-item span {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.inline-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.type-filter-settings .check-list {
  padding: 8px 10px;
}

.type-filter-settings .check-row {
  padding: 6px 8px;
}

.check-row-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.check-item-title {
  min-width: 70px;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-right: 6px;
  vertical-align: middle;
  background: #94a3b8;
}

.status-ok {
  background: #16a34a;
}

.status-fail {
  background: #dc2626;
}

.status-auth {
  background: #f59e0b;
}

.status-skip {
  background: #94a3b8;
}

.layout-task .check-list {
  border: 1px solid var(--form-border-color);
  border-radius: 6px;
  padding: 0;
  background: var(--color-surface);
}

.layout-task .check-row {
  border: none;
  border-radius: 6px;
  padding: 8px 10px;
  background: var(--color-surface-2);
}

.layout-task .check-row:nth-child(even) {
  background: var(--color-surface);
}

.layout-task .check-list .notice {
  background: transparent;
  padding: 0;
}

.reveal-flash {
  position: relative;
  animation: revealFlash 0.7s ease;
}

@keyframes revealFlash {
  0% {
    box-shadow: 0 0 0 0 rgba(38, 139, 210, 0.35);
  }

  100% {
    box-shadow: 0 0 0 10px rgba(38, 139, 210, 0);
  }
}

.endpoint-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--color-fg);
}

.endpoint-row:last-child {
  margin-bottom: 0;
}

.endpoint-label {
  font-family: ui-monospace, SFMono-Regular, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 12px;
  background: var(--color-chip-bg);
  border-radius: 6px;
  padding: 2px 6px;
  color: var(--color-fg);
}

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

.legend {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--color-muted);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.list-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.list-description {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.list-meta {
  font-size: 12px;
  color: var(--color-muted-2);
}
