:root {
  --theme-foreground-focus: #ff6f37;
  --sans-serif: cofoSans, "cofoSans Fallback", -apple-system, BlinkMacSystemFont, "Inter", "avenir next", avenir, helvetica, "helvetica neue", ubuntu, roboto, noto, "segoe ui", arial, sans-serif;
  --serif: var(--sans-serif);

  /* Filter bar */
  --fb-chip-bg: color-mix(in srgb, var(--theme-foreground) 10%, transparent);
  --fb-chip-border: color-mix(in srgb, var(--theme-foreground) 22%, transparent);
  --fb-chip-chart-bg: color-mix(in srgb, var(--theme-foreground-focus) 12%, transparent);
  --fb-chip-chart-border: color-mix(in srgb, var(--theme-foreground-focus) 50%, transparent);
  --fb-chip-chart-color: var(--theme-foreground-focus);
  --fb-chip-chart-dot: var(--theme-foreground-focus);
}

/* ── Filter bar ──────────────────────────────────────────────────────────── */

.filter-bar-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--theme-background);
  border-bottom: 1px solid var(--theme-foreground-faintest);
  box-shadow: 0 2px 10px color-mix(in srgb, var(--theme-foreground) 10%, transparent);
  margin-bottom: 1.5rem;
}

.filter-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  flex-wrap: wrap;
}

.filter-bar-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--theme-foreground-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-bar-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
  align-items: center;
  min-height: 28px;
}

.filter-bar-empty {
  font-size: 13px;
  color: var(--theme-foreground-faint);
  font-style: italic;
}

.filter-bar-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}

/* Chips */
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 12px;
  line-height: 1.5;
  background: var(--fb-chip-bg);
  border: 1px solid var(--fb-chip-border);
  color: var(--theme-foreground);
  white-space: nowrap;
}

.filter-chip--chart {
  background: var(--fb-chip-chart-bg);
  border-color: var(--fb-chip-chart-border);
  color: var(--fb-chip-chart-color);
}

.chip-key {
  color: var(--theme-foreground-muted);
  font-size: 11px;
  font-weight: 600;
}

.filter-chip--chart .chip-key {
  color: var(--fb-chip-chart-color);
  opacity: 0.75;
}

.chip-chart-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fb-chip-chart-dot);
  flex-shrink: 0;
}

.chip-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  opacity: 0.45;
  font-size: 12px;
  line-height: 1;
  padding: 0 0 0 3px;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.15s;
}
.chip-remove:hover { opacity: 1; }

/* Buttons */
.filter-bar-add {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--theme-foreground-focus);
  color: var(--theme-background);
  border: none;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.filter-bar-add:hover { opacity: 0.82; }

.filter-add-icon {
  font-size: 15px;
  line-height: 1;
}

.filter-bar-reset {
  background: none;
  color: var(--theme-foreground-muted);
  border: 1px solid var(--fb-chip-border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
}
.filter-bar-reset:hover {
  background: var(--fb-chip-bg);
}

/* ── Slide-down panel ────────────────────────────────────────────────────── */

.filter-panel-dropdown {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.28s ease;
  border-top: 1px solid transparent;
}

.filter-panel-dropdown.open {
  max-height: 2000px;
  border-top-color: var(--theme-foreground-faintest);
}

.filter-panel-inner {
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.filter-group-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--theme-foreground-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--theme-foreground-faintest);
}

.filter-group-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}

.filter-select-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 140px;
  max-width: 220px;
}

.filter-select-wrap label {
  font-size: 11px;
  font-weight: 600;
  color: var(--theme-foreground-muted);
}

/* ── Checkbox dropdown ────────────────────────────────────────────────────── */

.filter-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  background: var(--theme-background-alt);
  border: 1px solid var(--fb-chip-border);
  border-radius: 6px;
  padding: 5px 9px;
  font-size: 13px;
  font-family: inherit;
  color: var(--theme-foreground);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s;
}
.filter-dropdown-btn.active {
  border-color: var(--theme-foreground-focus);
  color: var(--theme-foreground-focus);
  font-weight: 600;
}
.filter-dropdown-btn.dropdown-open {
  border-color: var(--theme-foreground-muted);
}
.filter-dropdown-arrow {
  display: inline-block;
  font-size: 11px;
  opacity: 0.5;
  transition: transform 0.15s;
  flex-shrink: 0;
}
.filter-dropdown-btn.dropdown-open .filter-dropdown-arrow {
  transform: rotate(180deg);
}

.filter-dropdown-list {
  display: none;
  margin-top: 4px;
  border: 1px solid var(--fb-chip-border);
  border-radius: 6px;
  background: var(--theme-background);
  max-height: 220px;
  overflow-y: auto;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--theme-foreground) 10%, transparent);
}
.filter-dropdown-list.open {
  display: block;
}

.filter-dropdown-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 13px;
  user-select: none;
}
.filter-dropdown-opt:hover {
  background: color-mix(in srgb, var(--theme-foreground) 5%, transparent);
}
.filter-dropdown-opt input {
  cursor: pointer;
  accent-color: var(--theme-foreground-focus);
  flex-shrink: 0;
}
.filter-dropdown-clear {
  border-bottom: 1px solid var(--theme-foreground-faintest);
  color: var(--theme-foreground-muted);
  font-style: italic;
}

/* Toggle pills */
.toggle-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.toggle-pill {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-family: inherit;
  border: 1px solid var(--fb-chip-border);
  background: var(--theme-background-alt);
  color: var(--theme-foreground-muted);
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}
.toggle-pill:hover {
  border-color: color-mix(in srgb, var(--theme-foreground) 40%, transparent);
  color: var(--theme-foreground);
}
.toggle-pill.active {
  background: var(--theme-foreground-focus);
  color: var(--theme-background);
  border-color: var(--theme-foreground-focus);
}


@container (min-width: 640px) {
  .grid.grid-align-start {
    align-items: start;
  }
  .controls-panel {
    position: sticky;
    border-bottom: solid 1px var(--theme-foreground-faintest);
    z-index: 99;
    top: 50px;
    margin-bottom: 1rem;
    padding: 0.5rem 0 0.2rem;
    backdrop-filter: blur(5px);
  }
  .modal-wrapper {
    position: sticky;
    z-index: 999;
    top: 50px;
  }
  .controls-panel .card {
    display: flex;
    align-items: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  .controls-panel .card .filters {
    flex-grow: 1;
  }
  .controls-panel .card .options {
    grid-column-start: none;
    width: min-content;
    border-left: solid 1px var(--theme-foreground-faintest);
    padding-left: 1rem;
    margin-left: 1rem;
  }
  .controls-panel .card .options > form > div {
    min-width: 100px;
  }
}

/* ── View switcher (grid / table toggle) ──────────────────────────────────── */

.grid-inspector-controls {
  justify-content: space-between;
  flex-wrap: nowrap;
  background: var(--theme-background-alt);
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 8px;
  overflow: hidden;
}

.view-toggle-label,
.ctrl-btn-label {
  display: inline;
  white-space: nowrap;
}

.controls-count {
  font-size: 13px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 641px) {
  .controls-count { font-size: 15px; }
}

.controls-count-label {
  color: var(--theme-foreground-muted);
}

.controls-right {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}

.ctrl-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  padding: 4px 9px;
  border: 1px solid var(--theme-foreground-fainter);
  border-radius: 6px;
  background: transparent;
  color: var(--theme-foreground-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.ctrl-btn:hover {
  background: var(--theme-background);
  color: var(--theme-foreground);
}

@media (max-width: 640px) {
  .view-toggle-label,
  .ctrl-btn-label { display: none; }
}

.view-switcher {
  display: inline-flex;
  border: 1px solid var(--theme-foreground-fainter);
  border-radius: 6px;
  overflow: hidden;
}

.view-switcher .view-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--theme-foreground-muted, #666);
  font-size: 12px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.view-switcher .view-toggle.active {
  background: var(--theme-foreground-focus);
  color: #fff;
}

.view-switcher .view-toggle:hover:not(.active) {
  background: var(--theme-background-alt);
}

/* ── Person card ──────────────────────────────────────────────────────────── */

.person-card {
  /* gap and padding already set by .grid-inspector .card */
  align-items: flex-start !important; /* override centered alignment for cards with timelines */
}

.card-photo {
  flex-shrink: 0;
}

.facility {
  font-size: 11px;
  color: var(--theme-foreground-muted);
  margin: 2px 0 !important;
}

/* ── Timeline ─────────────────────────────────────────────────────────────── */

.timeline {
  margin: 7px 0 5px;
}

.timeline-bar {
  display: flex;
  align-items: center;
  height: 10px;
}

.timeline-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--theme-foreground-focus);
  flex-shrink: 0;
}

.timeline-dot.ongoing {
  background: transparent;
  border: 2px dashed var(--theme-foreground-faint);
}

.timeline-line {
  flex: 1;
  height: 2px;
  background: var(--theme-foreground-focus);
}

.timeline-line.ongoing {
  background: repeating-linear-gradient(
    to right,
    var(--theme-foreground-faint) 0,
    var(--theme-foreground-faint) 4px,
    transparent 4px,
    transparent 8px
  );
}

.timeline-labels {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2px;
  position: relative;
}

.timeline-label-left,
.timeline-label-right {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  color: var(--theme-foreground-muted);
  line-height: 1.2;
}

.timeline-label-right { text-align: right; }

.timeline-label-left b,
.timeline-label-right b {
  font-size: 11px;
  color: var(--theme-foreground);
  font-weight: 600;
}

.timeline-duration {
  font-size: 10px;
  color: var(--theme-foreground-faint);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  white-space: nowrap;
}

/* ── Collapsible sentence ─────────────────────────────────────────────────── */

.sentence {
  font-size: 11px;
  color: var(--theme-foreground-muted);
  margin: 4px 0 0 !important;
  line-height: 1.4;
}

.sentence-toggle {
  display: inline;
  background: none;
  border: none;
  padding: 0px 5px 0 10px;
  font-size: 10px;
  color: var(--theme-foreground-focus);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  user-select: none;
}

.sentence-toggle:hover { opacity: 0.7; }

/* ── Observable Inputs.table wrapper ─────────────────────────────────────── */

.persons-table-wrapper {
  /* let Observable's table handle its own scroll */
  margin-top: 4px;
}

/* tighten up the default Observable table to match the card density */
.persons-table-wrapper table {
  font-size: 12.5px;
  table-layout: auto;
  width: 100%;
}

/* mobile column hiding */

@media (max-width: 640px) {
  .col-desktop-only {
    display: none !important;
  }
  .in-iframe #observablehq-center {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

/* desktop-only column hiding (columns without desktop: true) */
@media (min-width: 641px) {
  .col-mobile-only {
    display: none !important;
  }
}

/* column header tooltip indicator */
.col-header-hint {
  border-bottom: 1px dashed var(--theme-foreground-muted);
  cursor: help;
}


.persons-table-wrapper thead th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: visible;
}

.persons-table-wrapper thead th span {
  width: unset;
  margin-left: unset;
}

/* state badge used inside table cells */
.state-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  white-space: nowrap;
}

.state-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.state-badge.green::before  { background: #10b981; }
.state-badge.orange::before { background: #f97316; }
.state-badge.red::before    { background: #ef4444; }
.state-badge.gray::before   { background: #9ca3af; }

/* ── Card layout ──────────────────────────────────────────────────────────── */

/* Базовый .grid-inspector .card задаёт display:flex + align-items:center —
   переопределяем чтобы сделать колоночный layout */
.grid-inspector .card.person-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0;
  padding: 10px;
}

.card-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.card-photo-col {
  flex: 0 0 66px;
  width: 66px;
}

/* person-info должен быть ограничен — без min-width:0 flex-item растягивается */
.card-top .person-info {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}

.person-meta {
  font-size: 11px;
  color: var(--theme-foreground-muted);
  margin: 0 0 8px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-sentence {
  width: 100%;
  margin-top: 6px;
}

.sentence {
  display: block;
  font-size: 11px;
  color: var(--theme-foreground-muted);
  line-height: 1.4;
}

/* ── Sentence ─────────────────────────────────────────────────────────────── */

.card-sentence {
  width: 100%;
  margin-top: 6px;
}

/* Обёртка — relative чтобы кнопка позиционировалась внутри */
.sentence-wrapper {
  position: relative;
  font-size: 11px;
  color: var(--theme-foreground-muted);
  line-height: 1.4;
}

.sentence-trunc {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* отступ справа чтобы кнопка не перекрывала последние буквы */
  padding-right: 18px;
}

.sentence-full {
  display: block;
  white-space: normal;
  padding-right: 18px;
}

.sentence-prefix {
  font-weight: 600;
  color: var(--theme-foreground);
}

/* Кнопка поверх правого края строки */
.sentence-toggle {
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border: none;
  padding: 0 0 0 3px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--theme-foreground-focus);
  cursor: pointer;
  opacity: 0.9;
}

.sentence-toggle:hover { opacity: 1; }

/* ── Выравнивание карточек: убираем лишние отступы сетки ─────────────────── */

.grid-inspector.grid {
  gap: 8px !important;
  grid-auto-rows: auto;
}

/* каждая карточка занимает только свою высоту, не растягивается по соседу */
.grid-inspector .card.person-card {
  align-self: auto;
}

/* ── Маленькие экраны (<640px): вместо grid — карточки-столбик ────────────── */

@container (max-width: 639px) {
  .grid:has(> .card) {
    display: flex !important;
    flex-direction: column !important;
    grid-auto-rows: unset !important;
    gap: 6px !important;
  }
  .grid:has(> .card) .sentence-trunc {
    white-space: normal;
  }

  /* кнопки переключения вида — над заголовком карточки */
  .card:has(.button-bar) .card-header {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .card:has(.button-bar) .card-controls {
    order: -1;
    width: 100%;
    margin-left: 0 !important;
    margin-bottom: 8px;
    justify-content: space-between !important;
  }
}

/* Embed button & popover */
.embed-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--theme-foreground-muted);
  padding: 2px 4px;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.15s;
}

.embed-btn:hover {
  opacity: 1;
}

@media (min-width: 641px) {
  .embed-btn { display: inline-flex; align-items: center; }
}

.card-header {
  position: relative;
}

.embed-popover[hidden] {
  display: none;
}

.embed-popover {
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  z-index: 100;
  background: var(--theme-background);
  border: 1px solid var(--theme-foreground-faintest);
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  white-space: nowrap;
}

.embed-code {
  font-size: 12px;
  color: var(--theme-foreground-muted);
  font-family: monospace;
  max-width: 340px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.embed-copy-btn {
  background: none;
  border: 1px solid var(--theme-foreground-faintest);
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  padding: 2px 8px;
  white-space: nowrap;
  color: var(--theme-foreground);
}

.embed-copy-btn:hover {
  background: var(--theme-foreground-faintest);
}

/* ── Timeline ─────────────────────────────────────────────────────────────── */

.timeline {
  width: 100%;
  margin-top: 10px;
  box-sizing: border-box;
}

/* Полоса */
.tl-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 12px;
  box-sizing: border-box;
  /* последняя точка не должна вылезать за правый край */
  padding-right: 12px;
}

/* Точки */
.tl-dot {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--theme-foreground-focus);
}

.tl-dot.verdict {
  opacity: 0.55;
}

.tl-dot.end {
  background: var(--theme-foreground-faint);
}

.tl-dot.end.active {
  background: var(--sc, var(--theme-foreground-focus));
}

/* Линии — ширина задаётся инлайн через style="width:X%" */
.tl-line {
  flex: 0 0 auto;
  height: 2px;
  min-width: 0;
}

.tl-line.phase1 {
  background: var(--theme-foreground-focus);
}

.tl-line.phase2 {
  background: repeating-linear-gradient(
    to right,
    var(--sc, #9ca3af) 0,
    var(--sc, #9ca3af) 4px,
    transparent 4px,
    transparent 8px
  );
}

/* Подписи: три колонки — начало | середина | конец */
.tl-labels {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  margin-top: 3px;
  width: 100%;
}

.tl-start {
  display: flex;
  flex-direction: column;
  font-size: 9px;
  line-height: 1.2;
  color: var(--theme-foreground-muted);
}

.tl-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 9px;
  line-height: 1.2;
  color: var(--theme-foreground-muted);
  text-align: center;
  padding: 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

.tl-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 9px;
  line-height: 1.2;
  color: var(--theme-foreground-muted);
  text-align: right;
}

.tl-mid b {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
}

.tl-start b,
.tl-mid b,
.tl-end b {
  font-size: 10px;
  font-weight: 600;
  color: var(--theme-foreground);
}

.tl-dur {
  font-size: 8px;
  color: var(--theme-foreground-faint);
  margin-top: 1px;
}

.grid-inspector .card {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
}

.grid-inspector.clickable .card {
  cursor: pointer;
}

.grid-inspector .photo-profile,
.grid-inspector .no-photo-profile {
  width: 66px;
  height: 66px;
  min-width: 66px;
  min-height: 66px;
  max-width: 66px;
  max-height: 66px;
  flex: 0 0 66px;
  border-radius: 50%;
  object-fit: cover;
}

.grid-inspector .no-photo-profile {
  position: relative;
  overflow: hidden;
  background-color: var(--theme-foreground-faintest);
}

.grid-inspector .card > div:first-child {
  flex: 0 0 66px;
}

.grid-inspector .no-photo-profile::before {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-color: var(--theme-foreground-fainter);
  border-radius: 50%;
  content: '';
}

.grid-inspector .no-photo-profile::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  margin: auto;
  width: 44px;
  height: 30px;
  background-color: var(--theme-foreground-fainter);
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  content: '';
}

.grid-inspector .person-info .person-info {
  margin-left: 4px;
}

.grid-inspector .person-info p {
  margin-top: 0px;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 14px;
}

.grid-inspector .person-info .person-name {
  font-weight: 700;
}

.person-info p.location {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.person-info p.location .state {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background-color: #6b7280;
  margin-right: 10px;
  margin-left: 3px;
}

.person-info p.location .state::before {
  content: " ";
  display: block;
  padding: 6px;
  background-color: #6b7280;
  opacity: 0.2;
  border-radius: 9999px;
}

.person-info p.location .state.green,
.person-info p.location .state.green::before {
  background-color: #10b981;
} 

.person-info p.location .state.orange,
.person-info p.location .state.orange::before {
  background-color: #f97316;
} 

.person-info p.location .state.red,
.person-info p.location .state.red::before {
  background-color: #ef4444;
}

.grid-inspector-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  user-select: none;
}

.grid-inspector-controls button {
  cursor: pointer;
}

.grid-inspector-pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0 4px;
  user-select: none;
}

.grid-inspector-pager .button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 9px;
  border: 1px solid var(--theme-foreground-fainter);
  border-radius: 6px;
  background: transparent;
  color: var(--theme-foreground);
}

.grid-inspector-pager .button.disabled {
  cursor: default;
  opacity: 0.3;
}

.controls-mini-pager {
  display: none;
  align-items: center;
  gap: 2px;
  margin-left: 10px;
}

@media (min-width: 641px) {
  .controls-mini-pager { display: inline-flex; }
}

.controls-page-counter {
  font-size: 12px;
  color: var(--theme-foreground-muted);
  min-width: 36px;
  text-align: center;
}

.ctrl-mini-page-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--theme-foreground-muted);
  font-size: 18px;
  line-height: 1;
  padding: 0 2px;
  display: flex;
  align-items: center;
}

.ctrl-mini-page-btn:hover:not(:disabled) {
  color: var(--theme-foreground);
}

.ctrl-mini-page-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.grid-inspector-empty {
  display: flex;
  align-items: start;
  font-family: sans-serif;
  gap: 20px;
}

.grid-inspector-empty .no-selection {
  margin: 10px auto;
  font-style: italic;
  color: var(--theme-foreground-alt);
  font-family: auto;
}

/* ── Profile Drawer ───────────────────────────────────────────────────────── */

#_profile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 500;
}

#_profile-overlay.open {
  display: block;
}

#_profile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100vw);
  background: var(--theme-background, #fff);
  box-shadow: none;
  z-index: 501;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

#_profile-drawer.open {
  transform: translateX(0);
  box-shadow: -4px 0 28px rgba(0, 0, 0, 0.15);
}

/* Inside a responsible iframe the parent page scrolls, so position:fixed anchors
   to the iframe element top rather than the screen. Offset by the scroll amount;
   use the relayed viewport height since 100vh = full iframe height inside iframe. */
#_profile-drawer {
  top: var(--iframe-scroll-offset, 0px);
  height: var(--iframe-viewport-height, 100vh);
  bottom: auto;
}

.in-iframe #_profile-drawer {
  border-right: 1px solid var(--theme-foreground-faintest, #e5e5e5);
}

#_profile-close {
  position: absolute;
  top: calc(10px + var(--iframe-viewport-top, 0px));
  right: 10px;
  background: var(--theme-background-alt, #f5f5f5);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: inherit;
  opacity: 0.7;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s, background 0.15s;
  line-height: 1;
}

@media (pointer: coarse) {
  #_profile-close {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    top: 8px;
    right: 8px;
  }
}

#_profile-close:hover {
  opacity: 1;
  background: var(--theme-foreground-faintest, #e5e5e5);
}

#_profile-content {
  flex: 1;
  overflow-y: auto;
  padding: calc(52px + var(--iframe-viewport-top, 0px)) 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#_profile-letter-footer {
  flex-shrink: 0;
  padding: 14px 24px;
  background: var(--theme-background, #fff);
  border-top: 1px solid var(--theme-foreground-faintest, #e5e5e5);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.in-iframe #_profile-close {
  display: none;
}

.in-iframe #_profile-letter-footer {
  display: flex !important;
}

#_profile-footer-close {
  display: none;
  flex-shrink: 0;
  height: 44px;
  padding: 0 14px;
  gap: 6px;
  border-radius: 8px;
  border: 1px solid var(--theme-foreground-faintest, #e5e5e5);
  background: var(--theme-background-alt, #f5f5f5);
  cursor: pointer;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  white-space: nowrap;
  margin-left: auto;
}

.in-iframe #_profile-footer-close {
  display: flex;
}

#_profile-footer-close:hover {
  background: var(--theme-foreground-faintest, #e5e5e5);
}

.drawer-letter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  padding: 11px 16px;
  background: #ea580c;
  color: #fff !important;
  border-radius: 8px;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
  box-sizing: border-box;
  transition: background 0.15s;
}

.drawer-letter-btn:hover {
  background: #c2410c;
}

img.drawer-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  align-self: center;
}

.drawer-name {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 4px !important;
}

.drawer-meta {
  font-size: 14px;
  color: var(--theme-foreground-muted);
  margin: 0 0 4px !important;
}

#_profile-content .location {
  font-size: 14px;
  margin: 0 0 2px !important;
}

#_profile-content .facility {
  font-size: 14px;
}

.drawer-sentence {
  font-size: 14px;
  line-height: 1.5;
  color: var(--theme-foreground-muted);
}

.drawer-sentence .sentence-prefix {
  color: var(--theme-foreground);
}

.drawer-story {
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid var(--theme-foreground-faintest);
  padding-top: 16px;
}

/* Reserve layout space while async blocks load to prevent scroll jumping */
.observablehq--block:has(> .card[id]) {
  min-height: 300px;
}
.observablehq--block:has(> .indicators.grid) {
  min-height: 80px;
}
.observablehq--block:has(> .card.indicator) {
  min-height: 80px;
}

.data-footer {
  font-size: 0.78em;
  opacity: 0.45;
  margin-top: 2rem;
  text-align: center;
}

.card.indicator {
  cursor: pointer;
}

@keyframes indicator-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(234,88,12,0.22); }
  70%  { box-shadow: 0 0 0 7px rgba(234,88,12,0); }
  100% { box-shadow: 0 0 0 0 rgba(234,88,12,0); }
}

.card {
  border-radius: 4px;
}

.card.indicator-alt {
  border-radius: 4px;
}

.card.indicator-alt.clickable {
  cursor: pointer;
  transition: box-shadow 0.15s, transform 0.15s;
  animation: indicator-pulse 2s ease-out 3;
}

.card.indicator-alt.clickable .big-number::after,
.card.indicator .big-number::after,
.gender-stat--clickable .big-number::after {
  content: " →";
  font-size: 0.6em;
  font-weight: 400;
  display: inline-block;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.2s ease, opacity 0.2s ease;
  vertical-align: middle;
}

.card.indicator-alt.clickable:hover .big-number::after,
.card.indicator:not(:has(.gender-stat--clickable)):hover .big-number::after,
.gender-stat--clickable:hover .big-number::after {
  max-width: 2em;
  opacity: 1;
}

.card.indicator-alt.clickable:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transform: translateY(-1px);
  animation: none;
}

.card.indicator h2 {
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.big-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin: 0.5rem 0;
  font-family: cofoSans, "cofoSans Fallback", var(--sans-serif);
  font-variant-numeric: tabular-nums lining-nums;
}

.muted {
  font-size: 0.85rem;
  opacity: 0.7;
}

.indicator-alt h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.indicator-alt .change {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--theme-foreground-faintest);
  font-weight: 500;
}

/* ── Indicator hint tooltip ───────────────────────────────────────────────── */

.indicator-hint-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.indicator-hint-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.5px solid var(--theme-foreground-muted);
  color: var(--theme-foreground-muted);
  font-size: 9px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  background: transparent;
  margin-left: 5px;
  flex-shrink: 0;
  line-height: 1;
  transition: border-color 0.15s, color 0.15s;
}
.indicator-hint-btn:hover {
  border-color: var(--theme-foreground-focus);
  color: var(--theme-foreground-focus);
}

.indicator-hint-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--theme-foreground);
  color: var(--theme-background);
  font-size: 12px;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 6px;
  width: 230px;
  z-index: 500;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--theme-foreground) 20%, transparent);
  pointer-events: none;
}
.indicator-hint-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--theme-foreground);
}
.indicator-hint-wrap:hover .indicator-hint-tooltip,
.indicator-hint-wrap.open .indicator-hint-tooltip {
  display: block;
}

/* Sticky indicators sidebar layout (pages using indicators2) */
.observablehq--block:has(.indicators-sidebar) {
  align-self: start;
  position: sticky;
  top: 3rem;
  float: right;
  width: 340px;
  margin-left: 2rem;
  will-change: transform;
  transition: transform 50ms linear;
}

:root:has(.indicators-sidebar) .grid-inspector-controls:not(.no-sidebar),
:root:has(.indicators-sidebar) .persons-table-wrapper:not(.no-sidebar),
:root:has(.indicators-sidebar) .grid-inspector:not(.no-sidebar),
:root:has(.indicators-sidebar) .grid-inspector-pager:not(.no-sidebar) {
  margin-right: 350px;
}

@media (max-width: 1110px) {
  .observablehq--block:has(.indicators-sidebar) {
    position: static;
    float: none;
    width: 100%;
    margin: 0 0 1.5rem 0;
  }
  :root:has(.indicators-sidebar) .grid-inspector-controls:not(.no-sidebar),
  :root:has(.indicators-sidebar) .persons-table-wrapper:not(.no-sidebar),
  :root:has(.indicators-sidebar) .grid-inspector:not(.no-sidebar),
  :root:has(.indicators-sidebar) .grid-inspector-pager:not(.no-sidebar) {
    margin-right: 0;
  }
}

.gender-indicator {
  display: flex;
  flex-direction: column;
  width: max-content;
}

.gender-indicator .item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

#observablehq-sidebar details summary:hover, .observablehq-link-active a, .observablehq-link a:hover {
  background: url(https://repression.net/external/brush-2.svg);
}

.article-cover {
  position: relative;
}

.article-cover img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.logo:hover svg {
  fill: black;
}

.slogan {
  background: url(https://repression.net/external/brush-1.svg);
  padding: 0.5rem;
}

.donate {
  background: url(https://repression.net/external/brush-2.svg);
  padding: 0.3rem;
}

.hint {
  margin-top: 0.5rem;
  color: var(--theme-foreground-muted);
  font-size: smaller;
}

@media (prefers-color-scheme: dark) {
  :root {
    --theme-logo: #fff;
  }
  .modal-body .choices__inner {
    background: var(--theme-foreground-faint)!important;
  }
}

@media (prefers-color-scheme: light) {
  :root {
    --theme-logo: #000;
  }
}

.choices {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 16px;
}
.choices:focus {
  outline: none;
}
.choices:last-child {
  margin-bottom: 0;
}
.choices.is-open {
  overflow: visible;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  cursor: not-allowed;
  -webkit-user-select: none;
          user-select: none;
}
.choices.is-disabled .choices__item {
  cursor: not-allowed;
}
.choices [hidden] {
  display: none !important;
}

.choices[data-type*=select-one] {
  cursor: pointer;
}
.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px;
}
.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin: 0;
}
.choices[data-type*=select-one] .choices__button {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.25;
}
.choices[data-type*=select-one] .choices__button:hover, .choices[data-type*=select-one] .choices__button:focus {
  opacity: 1;
}
.choices[data-type*=select-one] .choices__button:focus {
  box-shadow: 0 0 0 2px #005F75;
}
.choices[data-type*=select-one] .choices__item[data-placeholder] .choices__button {
  display: none;
}
.choices[data-type*=select-one]::after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}
.choices[data-type*=select-one].is-open::after {
  border-color: transparent transparent #333;
  margin-top: -7.5px;
}
.choices[data-type*=select-one][dir=rtl]::after {
  left: 11.5px;
  right: auto;
}
.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
  cursor: text;
}
.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #003642;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}
.choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #ddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}
.is-focused .choices__inner, .is-open .choices__inner {
  border-color: #b7b7b7;
}
.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}
.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}
[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}
.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}
.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #005F75;
  border: 1px solid #004a5c;
  color: #fff;
  word-break: break-all;
  box-sizing: border-box;
}
.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}
[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}
.choices__list--multiple .choices__item.is-highlighted {
  background-color: #004a5c;
  border: 1px solid #003642;
}
.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  display: none;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
}
.is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
  display: block;
}
.is-open .choices__list--dropdown, .is-open .choices__list[aria-expanded] {
  border-color: #b7b7b7;
}
.is-flipped .choices__list--dropdown, .is-flipped .choices__list[aria-expanded] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}
.choices__list--dropdown .choices__list, .choices__list[aria-expanded] .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}
.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}
[dir=rtl] .choices__list--dropdown .choices__item, [dir=rtl] .choices__list[aria-expanded] .choices__item {
  text-align: right;
}
@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable[data-select-text], .choices__list[aria-expanded] .choices__item--selectable[data-select-text] {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable[data-select-text]::after, .choices__list[aria-expanded] .choices__item--selectable[data-select-text]::after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable[data-select-text], [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable[data-select-text] {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable[data-select-text]::after, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable[data-select-text]::after {
    right: auto;
    left: 10px;
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted::after, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
  opacity: 0.5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
          user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}
.choices__input:focus {
  outline: 0;
}
.choices__input::-webkit-search-decoration, .choices__input::-webkit-search-cancel-button, .choices__input::-webkit-search-results-button, .choices__input::-webkit-search-results-decoration {
  display: none;
}
.choices__input::-ms-clear, .choices__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: 0.5;
}


.choices div, .choices input {
  box-sizing: border-box;
}
.choices__inner {
  border: 1px solid #efefef;
  background: white;
  padding: 4px 4px;
  min-height: 0;
  display: block;
}

.choices__item {
  white-space: nowrap;
}
.choices .choices__input {
  background: none;
  width: 2ch;
  font: 13px/1.2 var(--sans-serif);
  padding: 2px 4px;
  margin: 2px;
  border-radius: 3px;
  vertical-align: -1px;
  border: 1px solid transparent;
  display: inline-block;
  max-width: calc(100% - 4px);
}
.choices .choices__input:not([value=""]):focus {
  border-color: transparent;
}
.choices__list--dropdown,
.choices__list[aria-expanded] {
  border: 1px solid #efefef;
}
/* .choices__list {
  font: 13px/1.2 var(--sans-serif);
} */
.choices__list--multiple .choices__item {
  background: #e2e2e2;
  color: #454545;
  border-radius: 3px;
  border: 1px solid transparent;
  font-size: inherit;
  font-weight: inherit;
  padding: 2px 4px;
  margin: 2px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.choices__list--multiple .choices__item.is-highlighted {
  border: none;
  border: 1px solid black;
  background: #e2e2e2;
  color: #454545;
}
.choices[data-type*="select-multiple"] .choices__button {
  font-size: 16px;
  line-height: 1;
  width: 1ex;
  height: 1ex;
  background: none;
  border-left: none;
  padding: 0;
  margin: 0;
}
.choices[data-type*="select-multiple"] .choices__button:after {
  content: "×";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-indent: 0;
  text-align: center;
  font-weight: bold;
  line-height: .5;
  margin-top: -.1ex;
}

.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  font-size: inherit;
  font-weight: inherit;
}
.choices__list[aria-expanded] .choices__item {
  padding: 8px 8px;
}
.choices__list.choices__list--dropdown {
  visibility: initial;
  display: none;
}
.choices__list.choices__list--dropdown.is-active {
  display: block;
}
.choices__list--dropdown .choices__item.has-no-choices {
  font-size: 12px;
  font-weight: 400;
  color: #1b1e23;
  opacity: .5;
}

.choices {
  font-size: 13px;  
}

.choices__inner {
  background-color: var(--theme-background-alt);
  margin: 0em;
  padding: 1px 0px;
  border: solid 1px var(--theme-foreground-fainter);
}

.choices__list--multiple .choices__item {
  font: 13px/1.2 var(--sans-serif);
  color: initial;
}

.choices__list--multiple .choices__item {
  background-color: var(--theme-background-alt);
  color: var(--theme-foreground);
}

.choices__list[aria-expanded] .choices__item {
  color: var(--theme-foreground);
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  background-color: var(--theme-background-alt);
}

.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: var(--theme-foreground-faintest);
  color: var(--theme-foreground);
}

/* Modal */

.modal {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 10000;
  overflow: auto;
  background: var(--theme-background-alt);
  border: solid 1px var(--theme-foreground-faintest);
  border-radius: 0.75rem;
  padding: 1rem;
  margin: 1rem 0;
  height: max-content;
  box-shadow: 2px 3px 5px var(--theme-foreground-fainter);
}

.modal.open {
  display: block;
}

.modal-body {
  padding: 20px;
}

.modal-body .choices__inner {
  background: var(--theme-background-b);
}

.modal-body button.close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

@media only screen and (min-width: 30em) {
  .modal-body form {
    padding-bottom: var(--length1);
  }

  .modal-body form label {
    align-self: center;
    padding: 0;
    --label-width: 180px;
  }

  .modal-body button.apply {
    float: right;
    cursor: pointer;
  }

  .modal-body .choices__inner {
    border: none;
  }
}

/* Filters */
.filter-panel {
  cursor: pointer;
}

.filter-panel .filter-values {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}

.filter-panel .filter-values .filter-label {
  font-weight: bold;
}

.filter-panel .filter-values .filter-value {
  background-color: var(--theme-foreground-faintest);
  color: var(--theme-foreground);
  border-radius: 3px;
  border: 1px solid transparent;
  font-size: inherit;
  font-weight: inherit;
  padding: 2px 4px;
  margin: 2px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

/* Filter Summary */
.filter-summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 1110px) {
  .indicators-sidebar {
    display: flex !important;
    flex-direction: column !important;
  }
  .indicators-sidebar .filter-summary {
    display: none;
  }
}

.filter-summary-hint {
  font-size: 0.85em;
  color: var(--theme-foreground-muted);
  font-style: italic;
}

.filter-summary .filter-values {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-summary .filter-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}


.filter-summary .filter-label {
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--theme-foreground-muted);
}

.filter-summary .filter-value {
  background-color: var(--theme-foreground-faintest);
  color: var(--theme-foreground);
  border-radius: 4px;
  font-size: 0.875em;
  padding: 2px 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.filter-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--theme-foreground-muted);
  font-size: 0.75em;
  padding: 0;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.15s;
}

.filter-remove-btn:hover {
  opacity: 1;
  color: var(--theme-foreground);
}

.filter-panel .filter-instructions {
  display: flex;
  justify-content: space-between;
  font-size: larger;
  font-style: italic;
  margin: 5px 0;
}

.filter-panel .filter-instructions .filters-edit {
  color: var(--theme-foreground-faint);
}

.filter-panel .filter-instructions .filters-reset {
  font-style: normal;
}

/* ── Period Switcher ──────────────────────────────────────────────────────────
   Редакционный стиль: без рамок, акцент — подчёркивание активного элемента
   Цветовая схема берётся из CSS-переменных темы Observable
──────────────────────────────────────────────────────────────────────────── */

.period-switcher {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.period-switcher__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--theme-foreground-muted, #9ca3af);
  white-space: nowrap;
  /* выровнять по базовой линии кнопок */
  line-height: 1;
  padding-bottom: 2px;
}

.period-switcher__track {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  /* тонкая линия под всеми кнопками */
  border-bottom: 1px solid var(--theme-foreground-faintest, #e5e7eb);
}

.period-switcher__btn {
  position: relative;
  background: none;
  border: none;
  padding: 4px 14px 7px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: var(--theme-foreground-muted, #9ca3af);
  cursor: pointer;
  transition: color 0.15s;
  white-space: nowrap;
  /* подчёркивание активного — псевдоэлемент */
}

.period-switcher__btn::after {
  content: '';
  position: absolute;
  bottom: -1px;   /* перекрывает border-bottom трека */
  left: 0;
  right: 0;
  height: 2px;
  background: var(--theme-foreground-focus, #ff6f37);
  transform: scaleX(0);
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.period-switcher__btn:hover {
  color: var(--theme-foreground, #1b1e23);
}

.period-switcher__btn.active {
  color: var(--theme-foreground, #1b1e23);
  font-weight: 600;
}

.period-switcher__btn.active::after {
  transform: scaleX(1);
}