/* A&R Scout — студийная консоль. Палитра: чернильный фон, янтарный VU-акцент */
:root {
  --bg: #12151c;
  --panel: #1a1f29;
  --panel-2: #1f2532;
  --border: #2a313e;
  --text: #e7ebf2;
  --muted: #8b94a6;
  --amber: #f5b942;
  --amber-dim: #6b5522;
  --green: #6fcf97;
  --red: #e66a6a;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --display: 'Space Grotesk', sans-serif;
  --body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; }
[hidden] { display: none !important; }
html { color-scheme: dark; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
main { max-width: 1240px; margin: 0 auto; padding: 24px 20px 80px; }
h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
/* цифры одной ширины — колонки и метрики не «пляшут» */
.stats, .mono, .history-row, .scan-progress-meta, .markets-count { font-variant-numeric: tabular-nums; }

button, input, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }

/* ---------- Шапка ---------- */
.topbar {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  padding: 14px 24px; border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #171b24, var(--bg));
  position: sticky; top: 0; z-index: 10;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  flex: none; display: block; width: 34px; height: 34px;
  border-radius: 10px; box-shadow: 0 2px 10px rgba(245,185,66,.18);
}
.brand-mark svg { display: block; width: 100%; height: 100%; }
.brand-text { min-width: 0; }
.brand-name {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--display); font-weight: 700; font-size: 17px; line-height: 1.2;
}
.brand-ver {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em;
  color: var(--amber); border: 1px solid var(--amber-dim); border-radius: 20px;
  padding: 1px 6px; line-height: 1.5; flex: none;
}
.brand-sub {
  display: flex; align-items: center; gap: 5px;
  color: var(--muted); font-size: 11.5px; margin-top: 2px;
}
.brand-sub::before {
  content: ''; flex: none; width: 5px; height: 5px; border-radius: 50%;
  background: var(--amber); opacity: .8;
}

.tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.tab {
  background: none; border: 1px solid transparent; border-radius: 8px;
  padding: 8px 16px; color: var(--muted); cursor: pointer;
  font-family: var(--display); font-weight: 500; font-size: 14px;
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--amber); border-color: var(--border); background: var(--panel); }

.topbar-end {
  display: flex; align-items: center; gap: 16px;
  margin-left: auto; min-width: 0;
}
.stats { display: flex; gap: 18px; font-family: var(--mono); font-size: 12px; color: var(--muted); }
.stats b { color: var(--text); font-weight: 500; }

/* ---------- Вкладки ---------- */
.tabpane { display: none; }
.tabpane.active { display: block; }

/* ---------- Панели сканера ---------- */
.scan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; align-items: stretch; }
.panel {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.scan-grid .panel { display: flex; flex-direction: column; }
/* кнопка всегда прижата к низу — панели выглядят ровно при разной длине текста */
.scan-grid .panel .btn.primary { margin-top: auto; }
.panel-eyebrow {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 6px;
}
.panel h2 { font-family: var(--display); font-size: 17px; line-height: 1.3; margin-bottom: 8px; }
.panel h3 { font-family: var(--display); font-size: 15px; margin-bottom: 10px; }
.hint { color: var(--muted); font-size: 12.5px; line-height: 1.55; margin-bottom: 14px; max-width: 68ch; }
.hint code { font-family: var(--mono); color: var(--amber); font-size: 11.5px; white-space: nowrap; }

.panel input, .panel select {
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 9px 12px; width: 100%; margin-bottom: 10px; min-width: 0;
}
.row { display: flex; gap: 10px; flex-wrap: wrap; }
.row > * { flex: 1 1 140px; min-width: 0; }
input.short { max-width: 90px; text-transform: uppercase; font-family: var(--mono); }
.check {
  display: flex; align-items: flex-start; gap: 8px; color: var(--muted);
  font-size: 13px; line-height: 1.4; margin-bottom: 10px; cursor: pointer;
}
.check input { width: auto; margin: 2px 0 0; flex: none; accent-color: var(--amber); }

.markets-panel { margin-bottom: 16px; }
.geo-scan-opts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px 24px; align-items: start;
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid var(--border);
}
.geo-scan-opts .field { display: flex; flex-direction: column; gap: 6px; margin: 0; min-width: 0; }
.geo-scan-opts .field.num { max-width: 260px; }
.geo-scan-opts .field.num input { margin: 0; height: 38px; max-width: 110px; }
.geo-scan-opts .field.check {
  flex-direction: row; align-items: flex-start; gap: 8px;
  align-self: end; min-height: 38px; padding-top: 9px;
  color: var(--muted); font-size: 13px; line-height: 1.4; cursor: pointer;
}
.geo-scan-opts .field.check input { width: auto; margin: 2px 0 0; flex: none; accent-color: var(--amber); }
.geo-scan-opts .field-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); line-height: 1.3;
}
.markets-toolbar {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  margin-bottom: 10px;
}
.markets-toolbar > input { flex: 1; min-width: 180px; margin-bottom: 0; }
.markets-presets { display: flex; gap: 6px; flex-wrap: wrap; }
.preset {
  background: var(--bg); border: 1px solid var(--border); border-radius: 20px;
  padding: 5px 11px; cursor: pointer; color: var(--muted); font-size: 12px;
  font-family: var(--display); font-weight: 500;
}
.preset:hover, .preset.on { color: var(--amber); border-color: var(--amber-dim); }
.markets-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.markets-actions .btn { padding: 6px 12px; font-size: 12px; width: auto; }
.markets-count { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.markets-selected { display: flex; gap: 6px; flex-wrap: wrap; min-height: 0; margin-bottom: 10px; }
.market-chip {
  font-family: var(--mono); font-size: 11px; letter-spacing: .04em;
  background: var(--bg); border: 1px solid var(--amber-dim); color: var(--amber);
  border-radius: 20px; padding: 3px 8px 3px 10px; display: inline-flex; align-items: center; gap: 6px;
}
.market-chip button {
  background: none; border: none; color: var(--muted); cursor: pointer; padding: 0 2px; font-size: 13px; line-height: 1;
}
.market-chip button:hover { color: var(--red); }
.markets-list { max-height: 280px; overflow: auto; border: 1px solid var(--border); border-radius: 10px; background: var(--bg); }
.market-group + .market-group { border-top: 1px solid var(--border); }
.market-group-title {
  position: sticky; top: 0; z-index: 1;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); background: #171b24; padding: 8px 12px;
}
.market-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 2px;
  padding: 6px 8px 10px;
}
.market-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px; border-radius: 8px; cursor: pointer; color: var(--text);
  font-size: 13px; margin: 0; white-space: nowrap;
}
.market-item:hover { background: var(--panel-2); }
.market-item input { width: auto; margin: 0; accent-color: var(--amber); flex: none; }
.market-item .code {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  width: 22px; flex: none;
}
.market-item .market-name { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.market-item.checked { color: var(--amber); }

/* ---------- Кастомные селекты ---------- */
.cselect { position: relative; display: block; width: 100%; min-width: 0; }
.cselect-native {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: 0;
  opacity: 0; pointer-events: none; clip: rect(0 0 0 0);
}
.cselect-btn {
  display: flex; align-items: center; gap: 10px; width: 100%; height: 38px;
  padding: 0 12px; text-align: left; cursor: pointer;
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); font: inherit;
  touch-action: manipulation;
  min-width: 0; overflow: hidden;
}
.cselect-btn:hover { border-color: #38414f; }
.cselect.open .cselect-btn { border-color: var(--amber-dim); }
.cselect-value { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cselect-caret {
  flex: none; width: 0; height: 0; margin-left: 2px;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid var(--muted); transition: transform .15s ease;
}
.cselect-menu { touch-action: pan-y; overscroll-behavior: contain; }
.cselect.open .cselect-caret { transform: rotate(180deg); border-top-color: var(--amber); }
.cselect.disabled { opacity: .5; }
.cselect.disabled .cselect-btn { cursor: not-allowed; }

.cselect-menu {
  position: fixed; z-index: 200; pointer-events: auto;
  max-height: 260px; overflow-y: auto; padding: 5px;
  background: var(--panel-2); border: 1px solid var(--border); border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
}
.cselect-menu[hidden] { display: none; }
.cselect-opt {
  padding: 8px 10px; border-radius: 7px; cursor: pointer; color: var(--text);
  font-size: 13px; line-height: 1.35;
}
.cselect-opt.active { background: rgba(245,185,66,.1); }
.cselect-opt.selected { color: var(--amber); }
.cselect-opt.selected::after { content: ' ✓'; opacity: .8; }
.cselect-opt.disabled { opacity: .45; cursor: default; }

.panel .cselect { margin-bottom: 10px; }
.row > .cselect { flex: 1 1 140px; min-width: 0; }
.filters .field .cselect-btn { background: var(--bg); }

.btn {
  background: var(--panel-2); border: 1px solid var(--border); border-radius: 8px;
  padding: 9px 18px; cursor: pointer; font-weight: 500; text-decoration: none;
  display: inline-block; color: var(--text);
}
.btn:hover { border-color: var(--amber-dim); }
.btn:active { transform: translateY(1px); }
.btn.primary { background: var(--amber); color: #16130a; border-color: var(--amber); font-weight: 600; width: 100%; }
.btn.primary:hover { filter: brightness(1.07); }
.btn.primary:disabled,
.btn.primary.is-busy { opacity: .55; cursor: wait; }
.btn.ghost { color: var(--muted); }
.btn.ghost:hover { color: var(--text); }
.btn-spinner {
  display: block;
  position: absolute; left: 50%; top: 50%;
  width: 16px; height: 16px; margin: -8px 0 0 -8px; border-radius: 50%;
  border: 2px solid rgba(22,19,10,.22); border-top-color: #16130a;
  animation: spin .7s linear infinite;
}
.btn.is-busy { position: relative; }
.btn.is-busy .btn-label { opacity: 0; }
@keyframes spin { to { transform: rotate(360deg); } }

.scan-status {
  margin: 16px 0; padding: 0 4px; font-family: var(--mono); font-size: 13px; min-height: 20px;
}
.scan-status.ok { color: var(--green); }
.scan-status.err { color: var(--red); }
.scan-status.busy { color: var(--amber); }

.scan-progress { margin: 0 0 16px; }
.scan-progress-bar {
  height: 8px; border-radius: 4px; background: var(--panel-2); border: 1px solid var(--border);
  overflow: hidden;
}
.scan-progress-bar > div {
  height: 100%; width: 0%; background: var(--amber); transition: width .2s ease;
}
.scan-progress-meta {
  margin-top: 6px; font-family: var(--mono); font-size: 11.5px; color: var(--muted);
}
.scan-live { margin-bottom: 16px; }
.scan-live h3 { display: flex; align-items: baseline; gap: 10px; }
.scan-live .muted { color: var(--muted); font-family: var(--mono); font-size: 12px; font-weight: 400; }
.scan-live-list { display: flex; flex-direction: column; gap: 6px; max-height: 320px; overflow: auto; }
.scan-live-row {
  display: flex; gap: 10px; align-items: center;
  padding: 6px 8px; border-radius: 8px; background: var(--bg);
  font-size: 13px;
}
.scan-live-row img {
  width: 36px; height: 36px; border-radius: 6px; object-fit: cover; background: var(--panel-2); flex-shrink: 0;
}
.scan-live-row > div { min-width: 0; }
.scan-live-row .title {
  font-weight: 600; line-height: 1.35;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.scan-live-row .sub {
  color: var(--muted); font-size: 12px; line-height: 1.35;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.scan-live-row a { color: inherit; text-decoration: none; }
.scan-live-row a:hover { color: var(--amber); }

.history { margin-top: 8px; }
.history-row {
  display: flex; gap: 14px; padding: 8px 0; border-top: 1px solid var(--border);
  font-family: var(--mono); font-size: 12px; color: var(--muted); flex-wrap: wrap;
}
.history-row b { color: var(--text); font-weight: 500; }

/* ---------- Фильтры ---------- */
.filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(172px, 1fr));
  gap: 14px;
  align-items: end;
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px; margin-bottom: 18px;
}
.filters .field {
  display: flex; flex-direction: column; gap: 6px;
  margin: 0; min-width: 0;
}
.filters .field.grow { grid-column: span 2; }
.filters .field-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.filters .field input,
.filters .field select {
  width: 100%; height: 38px; margin: 0;
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 0 12px; min-width: 0;
}
/* чекбоксы — отдельной строкой, иначе сетка полей разъезжается */
.filters-checks {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center;
}
.filters-checks .check { margin: 0; align-items: center; }
.filters-checks .check input { margin: 0; }
.filters-actions {
  grid-column: 1 / -1;
  display: flex; gap: 8px; align-items: center; justify-content: flex-end;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.filters-actions .btn { white-space: nowrap; }

.artist-groups { display: flex; flex-direction: column; gap: 18px; }
.artist-group details { border: 1px solid var(--border); border-radius: 12px; background: var(--panel); overflow: hidden; }
.artist-group summary {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  cursor: pointer; list-style: none; user-select: none;
  background: var(--panel-2);
}
.artist-group summary::-webkit-details-marker { display: none; }
.artist-group summary::before {
  content: ''; flex: none; width: 0; height: 0;
  border-top: 5px solid var(--muted); border-left: 4px solid transparent; border-right: 4px solid transparent;
  transform: rotate(-90deg); transition: transform .15s ease;
}
.artist-group details[open] summary::before { transform: rotate(0deg); border-top-color: var(--amber); }
.group-title {
  font-family: var(--display); font-weight: 700; font-size: 15px; min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.group-count {
  margin-left: auto; flex: none;
  font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: var(--muted);
}
.artist-group .group-cards { padding: 14px; }

@media (max-width: 560px) {
  .filters { grid-template-columns: 1fr 1fr; }
  .filters .field.grow { grid-column: 1 / -1; }
  .filters-actions .btn { flex: 1; text-align: center; }
}

/* ---------- Карточки артистов ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.card {
  background: var(--panel); border: 1px solid var(--border); border-radius: 12px;
  padding: 14px; display: flex; flex-direction: column; gap: 10px;
}
.card[tabindex] { cursor: pointer; }
.card[tabindex]:focus { outline: none; }
.card[tabindex]:focus-visible,
.card.is-focused {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px rgba(245, 185, 66, .55);
}
.card-head { display: flex; gap: 12px; align-items: center; }
.card-title { min-width: 0; flex: 1; }
.avatar {
  width: 52px; height: 52px; border-radius: 8px; object-fit: cover; object-position: center;
  background: var(--panel-2); flex-shrink: 0;
}
.card-name {
  font-family: var(--display); font-weight: 700; font-size: 15px; line-height: 1.3;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.card-name a { color: inherit; text-decoration: none; }
.card-name a:hover { color: var(--amber); }
.card-genres {
  color: var(--muted); font-size: 11.5px; line-height: 1.35; margin-top: 3px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

.star {
  margin-left: auto; background: none; border: none; cursor: pointer;
  font-size: 19px; color: var(--muted); padding: 4px;
}
.star.on { color: var(--amber); }

/* Сигнатура: VU-метр popularity */
.vu { display: flex; align-items: center; gap: 8px; }
.vu-label { font-family: var(--mono); font-size: 10px; color: var(--muted); width: 34px; text-transform: uppercase; }
.vu-track { display: flex; gap: 2px; flex: 1; }
.vu-seg { height: 8px; flex: 1; border-radius: 1.5px; background: var(--panel-2); }
.vu-seg.lit { background: var(--amber); }
.vu-seg.lit.hot { background: var(--red); }
.vu-val { font-family: var(--mono); font-size: 11px; width: 30px; text-align: right; }

.card-meta {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
}
.meta-item { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.meta-k {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.meta-v {
  font-family: var(--mono); font-size: 12.5px; color: var(--text); line-height: 1.3;
  font-variant-numeric: tabular-nums;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.badges { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.badge {
  display: inline-flex; align-items: center; max-width: 100%;
  font-family: var(--mono); font-size: 10px; letter-spacing: .05em; line-height: 1.6;
  padding: 2px 9px; border-radius: 20px; border: 1px solid var(--border); color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.badge.assigned { color: #7eb8ff; border-color: rgba(126,184,255,.35); }
.badge.major { color: var(--red); border-color: rgba(230,106,106,.35); }
.badge.score { color: var(--amber); border-color: var(--amber-dim); }
.badge.pipeline {
  color: var(--text); border-color: var(--border);
}
.badge.pipeline.contacted { color: #7eb8ff; border-color: rgba(126,184,255,.35); }
.badge.pipeline.negotiating { color: var(--amber); border-color: var(--amber-dim); }
.badge.pipeline.deal { color: var(--green); border-color: rgba(111,207,151,.35); }
.badge.pipeline.no_reply { color: var(--muted); }
.badge.pipeline.declined, .badge.pipeline.passed { color: var(--red); border-color: rgba(230,106,106,.35); }
.badge.pipeline.hold { color: #c9a0ff; border-color: rgba(201,160,255,.35); }

.pipeline-select {
  width: 100%; margin: 0; background: var(--bg);
  border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px;
  font-size: 13px;
}
.card-status,
.card-notes {
  display: flex; flex-direction: column; gap: 6px; min-width: 0;
}
.card-status .field-label,
.card-notes .field-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); line-height: 1.2;
}
.card-status .cselect { margin-bottom: 0; }
.card-notes .notes { margin: 0; }
/* статус пайплайна подсвечивает кнопку кастомного селекта (класс нативного select в data-атрибуте) */
.cselect[data-select-class~="pipeline-select"] { margin: 0; }
.cselect[data-select-class~="pipeline-select"] .cselect-btn { font-size: 13px; height: 38px; }
.cselect[data-select-class~="status-contacted"] .cselect-btn { border-color: rgba(126,184,255,.5); }
.cselect[data-select-class~="status-negotiating"] .cselect-btn { border-color: var(--amber-dim); }
.cselect[data-select-class~="status-deal"] .cselect-btn { border-color: rgba(111,207,151,.5); }
.cselect[data-select-class~="status-no_reply"] .cselect-btn { border-color: #38414f; }
.cselect[data-select-class~="status-hold"] .cselect-btn { border-color: rgba(201,160,255,.45); }
.cselect[data-select-class~="status-declined"] .cselect-btn,
.cselect[data-select-class~="status-passed"] .cselect-btn { border-color: rgba(230,106,106,.5); }

.btn-del {
  background: none; border: 1px solid transparent; color: var(--muted);
  border-radius: 6px; padding: 4px 8px; cursor: pointer; font-size: 12px;
}
.btn-del:hover { color: var(--red); border-color: rgba(230,106,106,.35); }

.card-actions {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: auto;
  padding-top: 2px;
}
.card-actions .btn-del { margin-left: auto; }
.card-actions .btn-pass {
  width: auto; max-width: 100%; padding: 6px 10px; font-size: 12px; height: auto;
  white-space: normal; line-height: 1.3; text-align: left;
}

.btn.danger {
  background: var(--red); color: #1a0c0c; border-color: var(--red); font-weight: 600;
}
.btn.danger:hover { filter: brightness(1.05); }

.danger-zone {
  margin-top: 28px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  max-width: 420px;
}
.danger-zone summary {
  cursor: pointer;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.02em;
  user-select: none;
}
.danger-zone summary::-webkit-details-marker { display: none; }
.danger-zone summary::before {
  content: '▸ ';
  opacity: 0.55;
}
.danger-zone[open] summary::before { content: '▾ '; }
.danger-zone .hint { margin: 10px 0 12px; font-size: 12.5px; }
.danger-zone .btn { font-size: 13px; }

/* ---------- Модалка подтверждения ---------- */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal[hidden] { display: none !important; }
.modal-backdrop {
  position: absolute; inset: 0; background: rgba(8, 10, 14, .72);
  backdrop-filter: blur(4px);
}
.modal-card {
  position: relative; z-index: 1;
  width: min(420px, 100%);
  background: var(--panel); border: 1px solid var(--border); border-radius: 14px;
  padding: 22px 22px 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.modal-card h3 {
  font-family: var(--display); font-size: 17px; margin-bottom: 8px;
}
.modal-card p {
  color: var(--muted); font-size: 14px; line-height: 1.45; margin-bottom: 18px;
}
.modal-card textarea {
  width: 100%; min-height: 96px; margin: 0 0 16px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  padding: 10px 12px; color: inherit; font: inherit; resize: vertical;
}
.modal-card textarea:focus { border-color: var(--amber-dim); outline: none; }
.modal-card-wide { width: min(520px, 100%); }
.report-files {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  margin: -4px 0 16px;
}
.report-files .btn { width: auto; padding: 8px 12px; cursor: pointer; }
.report-files .hint { margin: 0; }

.geo-block {
  border-top: 1px solid var(--border); padding-top: 9px;
}
.geo-label {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 5px;
}
.geo-cities {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px 12px; font-size: 11.5px; line-height: 1.35; color: var(--muted);
}
.geo-city {
  min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.geo-city b { color: var(--text); font-weight: 600; }
.geo-city i { font-style: normal; font-family: var(--mono); font-size: 10px; letter-spacing: .04em; }
.geo-city em { font-style: normal; font-family: var(--mono); font-size: 10.5px; opacity: .75; }

.label-block { display: flex; flex-direction: column; gap: 2px; }
.label-name {
  font-size: 12.5px; font-weight: 600; line-height: 1.35;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.label-notes {
  font-family: var(--mono); font-size: 10.5px; line-height: 1.35; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.notes {
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 7px 10px; width: 100%; font-size: 12.5px; color: var(--muted); resize: vertical;
  min-height: 34px; font-family: var(--body);
}

/* ---------- Служебное: проверка правообладателей ---------- */
.service-zone { max-width: 680px; }
.service-block { margin-top: 12px; }
.service-block + .service-block {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border);
}
.service-title {
  font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--text);
}
.service-zone .hint { margin: 6px 0 10px; }
.rights-queue {
  margin: 0 0 10px; font-family: var(--mono); font-size: 11.5px; color: var(--amber);
  font-variant-numeric: tabular-nums;
}
.rights-queue:empty { display: none; }
.rights-controls { display: flex; gap: 10px; align-items: end; flex-wrap: wrap; }
.rights-controls .field {
  display: flex; flex-direction: column; gap: 6px;
  flex: 1 1 160px; min-width: 0; margin: 0;
}
.rights-controls .field-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); line-height: 1.2;
}
.rights-controls .cselect { margin: 0; }
.rights-controls .btn.primary { flex: none; width: auto; padding: 0 20px; height: 38px; }
.service-block .scan-status { margin: 12px 0 0; min-height: 0; }
.service-block .scan-progress { margin: 10px 0 0; }

/* ---------- Таблица релизов ---------- */
.table-wrap {
  overflow: auto; max-height: calc(100vh - 210px);
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--panel);
}
table { width: 100%; border-collapse: collapse; background: var(--panel); font-size: 13px; }
.data-table { table-layout: fixed; min-width: 1080px; }
th {
  text-align: left; font-family: var(--mono); font-size: 10.5px; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); padding: 12px 14px;
  border-bottom: 1px solid var(--border); font-weight: 500;
  white-space: nowrap; background: #171b24;
  position: sticky; top: 0; z-index: 2;
}
td {
  padding: 12px 14px; border-bottom: 1px solid var(--border);
  vertical-align: middle; overflow-wrap: break-word;
}
tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--panel-2); }

/* Ширины колонок: правки только здесь */
.col-cover { width: 66px; }
.col-release { width: 22%; }
.col-artist { width: 15%; }
.col-date { width: 100px; }
.col-label { width: 15%; }
.col-copy { width: 26%; }
.col-upc { width: 120px; }
.col-status { width: 104px; }
.col-actions { width: 92px; }

.th-icon, .cell-cover { padding-right: 0; }
.th-actions, .cell-actions { text-align: right; white-space: nowrap; }

.cover { width: 40px; height: 40px; border-radius: 6px; object-fit: cover; background: var(--panel-2); display: block; }
.cover-empty { border: 1px solid var(--border); }
.rel-name {
  font-weight: 600; line-height: 1.35;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.rel-name a { color: inherit; text-decoration: none; }
.rel-name a:hover { color: var(--amber); }
.rel-type {
  color: var(--muted); font-size: 11px; font-family: var(--mono);
  margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cell-artist, .cell-label {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cell-label { color: var(--muted); }
.cell-date, .cell-upc { white-space: nowrap; }
td.mono { font-family: var(--mono); font-size: 11.5px; color: var(--muted); }
.cell-copy { font-size: 11.5px; color: var(--muted); line-height: 1.45; }
/* © и ℗ — по одной строке с усечением, полный текст в тултипе: ряды одной высоты */
.cell-copy .copy-line {
  display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cell-copy .copy-line + .copy-line { margin-top: 3px; }
.dim { color: var(--muted); opacity: .7; }

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

.empty { color: var(--muted); text-align: center; padding: 60px 0; }

.card.is-selected { outline: 2px solid var(--amber); outline-offset: 1px; }
.card.is-selected[tabindex]:focus-visible,
.card.is-selected.is-focused {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px rgba(245, 185, 66, .55);
}
.assign-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 10px 12px;
  align-items: end;
  padding: 12px 14px; margin-bottom: 14px;
  background: var(--panel); border: 1px solid var(--border); border-radius: 10px;
  position: sticky; top: 64px; z-index: 8;
}
.assign-lede {
  grid-column: 1 / -1; margin: 0;
  font-size: 12.5px; line-height: 1.45; color: var(--muted);
}
.assign-bar .field {
  display: flex; flex-direction: column; gap: 6px; margin: 0; min-width: 0;
}
.assign-bar .field-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); line-height: 1.2;
}
.assign-bar .cselect { width: 100%; margin: 0; }
.assign-bar select, .assign-bar input {
  width: 100%; height: 38px; margin: 0;
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 0 10px; min-width: 0;
}
.assign-go {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.assign-bar .assign-sel {
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  margin: 0; flex: 1; min-width: 12ch;
}
.assign-go .btn.primary {
  width: auto; min-width: 132px; height: 38px; margin-left: auto; padding: 0 16px;
}
@media (max-width: 720px) {
  .assign-bar { grid-template-columns: 1fr; position: static; }
  .assign-go .btn.primary { width: 100%; margin-left: 0; }
}
body[data-role="ar"] [data-admin-only] { display: none !important; }
.account {
  display: flex; align-items: center; gap: 12px;
  padding-left: 14px; border-left: 1px solid var(--border);
  min-width: 0; flex-shrink: 0;
}
.account-who {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 1px; min-width: 0;
}
.account-name {
  font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.25;
  max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.account-role {
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); line-height: 1.3;
}
.account .btn { padding: 6px 12px; width: auto; flex: none; }

.desk {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.desk-head h2 {
  font-family: var(--display); font-size: 26px; font-weight: 700;
  letter-spacing: -.02em; line-height: 1.15; margin: 0 0 6px;
}
.desk-lede {
  margin: 0; max-width: 52ch;
  color: var(--muted); font-size: 13.5px; line-height: 1.5;
}
.desk-grid {
  display: grid;
  gap: 18px;
  align-items: start;
}
.desk-grid > * { min-width: 0; }
@media (min-width: 960px) {
  .desk-grid:has(.desk-composer:not([hidden])) {
    grid-template-columns: 360px minmax(0, 1fr);
  }
}
.desk-board { min-width: 0; }
.desk-composer { position: sticky; top: 76px; min-width: 0; }
.desk-composer .cselect,
.composer-form .cselect { margin-bottom: 0; }
.desk-composer h3,
.desk-board-head h3 {
  font-family: var(--display); font-size: 15px; font-weight: 700;
  margin: 0 0 14px; letter-spacing: -.01em;
}
.desk-board-head {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
  margin-bottom: 14px;
}
.desk-board-head h3 { margin: 0; min-width: 0; }
.desk-tabs {
  display: flex; flex-wrap: wrap; gap: 4px; margin-left: auto;
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 3px;
}
.desk-tab {
  background: transparent; border: 0; border-radius: 8px;
  padding: 6px 10px; color: var(--muted); cursor: pointer;
  font-family: var(--display); font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.desk-tab:hover { color: var(--text); }
.desk-tab.is-on { color: var(--amber); background: var(--panel); }
.desk-tab-n {
  font-family: var(--mono); font-size: 11px; font-weight: 500; font-style: normal;
  color: inherit; opacity: .7; font-variant-numeric: tabular-nums;
}
.desk-empty {
  color: var(--muted); text-align: center;
  padding: 48px 16px; border: 1px dashed var(--border); border-radius: 12px;
  background: var(--panel);
}
.work-group { display: flex; flex-direction: column; gap: 10px; }
.work-group + .work-group { margin-top: 18px; }
.work-group-title {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); padding: 0 2px;
}

.composer-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.composer-form.is-stack { grid-template-columns: 1fr; }
.composer-form .field {
  display: flex; flex-direction: column; gap: 6px;
  margin: 0; min-width: 0;
}
.composer-form .field.span,
.composer-form .btn.primary { grid-column: 1 / -1; }
.composer-form .field-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); line-height: 1.2;
}
.composer-form .field input,
.composer-form .field select,
.composer-form .field textarea {
  width: 100%; margin: 0; min-width: 0;
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 0 12px; color: inherit; font: inherit;
}
.composer-form .field input,
.composer-form .field select { height: 38px; }
.composer-form input[type="datetime-local"] {
  min-width: 0; max-width: 100%; font-size: 13px; font-variant-numeric: tabular-nums;
}
.composer-form .field textarea {
  min-height: 96px; padding: 10px 12px; resize: vertical;
}
.composer-form .field input:hover,
.composer-form .field select:hover,
.composer-form .field textarea:hover { border-color: #38414f; }
.composer-form .field input:focus,
.composer-form .field select:focus,
.composer-form .field textarea:focus { border-color: var(--amber-dim); outline: none; }
.composer-form .btn.primary { margin-top: 4px; }
.desk-composer .scan-status { margin: 10px 0 0; min-height: 18px; }
.composer-hint {
  margin: 0 0 14px; color: var(--muted); font-size: 12.5px; line-height: 1.45;
}

.roster, .work-list { display: flex; flex-direction: column; gap: 10px; }

.roster-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto auto;
  gap: 10px 14px;
  align-items: center;
  background: var(--panel); border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 16px;
}
.roster-card.is-off { opacity: .55; }
.roster-avatar {
  width: 48px; height: 48px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--panel-2); color: var(--amber);
  font-family: var(--display); font-weight: 700; font-size: 17px;
}
.roster-who { min-width: 0; }
.roster-name { font-family: var(--display); font-weight: 700; font-size: 15px; line-height: 1.25; }
.roster-meta { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.roster-stat {
  display: flex; flex-direction: column; align-items: flex-end; gap: 1px;
}
.roster-stat b {
  font-family: var(--mono); font-size: 16px; font-weight: 500; font-variant-numeric: tabular-nums;
}
.roster-stat span { font-size: 11px; color: var(--muted); }
.roster-power { width: auto; padding: 6px 12px; justify-self: end; }
.roster-contact {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px 14px;
  padding-top: 10px; border-top: 1px solid var(--border);
}
.roster-contact .meta-k {
  font-family: var(--mono); font-size: 10px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted);
}
.copy-plain {
  background: none; border: 0; padding: 0; margin: 0;
  color: var(--text); font: inherit; cursor: pointer; text-align: left;
  max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.copy-plain:hover { color: var(--amber); }
.copy-plain.copied { color: var(--green); }
.roster-empty {
  text-align: center; color: var(--muted);
  padding: 48px 16px; border: 1px dashed var(--border); border-radius: 12px;
  font-size: 13.5px; background: var(--panel);
}

.work-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px; display: flex; flex-direction: column; gap: 10px;
  min-width: 0;
}
.work-card.is-overdue { border-color: rgba(230,106,106,.4); }
.work-card.is-done { opacity: .78; }
.work-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; min-width: 0; }
.work-status {
  flex: none; margin-top: 2px; white-space: nowrap;
  font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--border); border-radius: 20px;
  padding: 2px 8px; line-height: 1.5;
}
.work-card.is-overdue .work-status { color: var(--red); border-color: rgba(230,106,106,.4); }
.work-card.is-open .work-status { color: var(--amber); border-color: var(--amber-dim); }
.work-card.is-done .work-status { color: var(--green); border-color: rgba(111,207,151,.35); }
.work-card-title {
  font-family: var(--display); font-weight: 700; font-size: 16px; line-height: 1.3;
  min-width: 0; flex: 1; overflow-wrap: anywhere;
}
.work-meta {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px; min-width: 0;
}
.work-meta .meta-item-when { grid-column: 1 / -1; }
.work-meta .meta-v.when {
  white-space: nowrap; overflow: visible; text-overflow: unset;
  font-variant-numeric: tabular-nums;
}
.work-card.is-overdue .work-meta .meta-v.when { color: var(--red); }
.work-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.work-chip {
  font-size: 12px; color: var(--muted);
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 4px 8px; line-height: 1.3;
}
.work-chip.when { color: var(--text); font-variant-numeric: tabular-nums; font-family: var(--mono); font-size: 11.5px; }
.work-card.is-overdue .work-chip.when { color: var(--red); }
.work-body { font-size: 13.5px; line-height: 1.45; color: var(--text); margin: 0; overflow-wrap: anywhere; }
.work-report {
  font-size: 13px; line-height: 1.45; color: var(--muted); margin: 0;
  padding: 10px 12px; background: var(--bg); border-radius: 8px;
  overflow-wrap: anywhere;
}
.work-actions {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  padding-top: 8px; border-top: 1px solid var(--border);
}
.work-actions .btn {
  width: auto; height: 36px; padding: 0 14px; font-size: 13px;
  white-space: nowrap; flex: none;
}
.work-actions .btn.primary { min-width: 128px; }
.work-actions .btn-del { margin-left: auto; }
.work-files { display: flex; flex-wrap: wrap; gap: 6px; }
.work-files a {
  font-size: 12px; color: var(--amber); text-decoration: none;
  border: 1px solid var(--border); border-radius: 8px; padding: 4px 8px;
  max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.work-files a:hover { border-color: var(--amber-dim); }

.suggest {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 20;
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 10px; margin-top: 4px; max-height: 220px; overflow: auto;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.composer-form .field { position: relative; }
.suggest-item {
  display: flex; gap: 10px; align-items: center;
  width: 100%; border: 0; background: transparent; color: inherit;
  padding: 8px 10px; cursor: pointer; font-size: 13.5px; text-align: left;
}
.suggest-item:hover { background: rgba(245,185,66,.08); }
.suggest-item img {
  width: 28px; height: 28px; border-radius: 6px; object-fit: cover; object-position: center; background: var(--bg);
}

.copy-chip {
  font-family: var(--mono); font-size: 12px; line-height: 1.2;
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 6px 10px; color: var(--text); cursor: pointer;
}
.copy-chip:hover { border-color: var(--amber-dim); color: var(--amber); }
.copy-chip.copied { color: var(--green); border-color: rgba(111,207,151,.4); }

@media (max-width: 959px) {
  .desk-composer { position: static; }
  .composer-form { grid-template-columns: 1fr; }
  .roster-card { grid-template-columns: 48px minmax(0, 1fr) auto; }
  .roster-stat { display: none; }
  .work-meta { grid-template-columns: 1fr; }
}

/* ---------- Экран входа ---------- */
body.login-page {
  min-height: 100dvh;
  position: relative;
  overflow-x: hidden;
}
.login-glow {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(1100px 560px at 84% -12%, #1c2433 0%, transparent 58%),
    radial-gradient(520px 380px at 8% 108%, rgba(245,185,66,.07) 0%, transparent 62%);
}
.login-stage {
  position: relative; z-index: 1;
  width: min(1080px, calc(100% - 10vw));
  margin: 0 0 0 max(40px, 8vw);
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: 64px 80px;
  align-items: center;
  padding: 48px 0;
}
.login-intro { min-width: 0; max-width: 460px; }
.login-intro .brand { margin-bottom: 18px; }
.login-intro .brand-mark { width: 42px; height: 42px; border-radius: 12px; }
.login-intro .brand-name { font-size: 22px; }
.login-lede {
  color: var(--muted); font-size: 14.5px; line-height: 1.55;
  max-width: 36ch;
}
.login-card {
  width: 100%;
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px 24px 20px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.login-card .field {
  display: flex; flex-direction: column; gap: 6px; margin: 0;
}
.login-card .field-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); line-height: 1.2;
}
.login-card input {
  width: 100%; height: 42px; margin: 0;
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  padding: 0 12px;
}
.login-card input:hover { border-color: #38414f; }
.login-card input:focus { border-color: var(--amber-dim); }
.field-control { position: relative; display: block; }
.field-control input { padding-right: 44px; }
.pw-toggle {
  position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border: 0; background: transparent;
  color: var(--muted); cursor: pointer; border-radius: 8px;
  display: grid; place-items: center; padding: 0;
}
.pw-toggle:hover { color: var(--text); }
.pw-toggle[aria-pressed="true"] { color: var(--amber); }
.login-card .btn.primary {
  margin-top: 2px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.login-err {
  min-height: 1.4em; margin: 0;
  color: var(--red); font-size: 13px; line-height: 1.4;
}
.login-footnote {
  margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45;
  text-align: center;
}

@media (max-width: 840px) {
  .login-stage {
    grid-template-columns: 1fr;
    width: min(400px, calc(100% - 32px));
    margin: 0 auto;
    gap: 28px;
    align-content: center;
    padding: 36px 0 48px;
  }
  .login-intro { max-width: none; }
  .login-lede { display: none; }
}

@media (max-width: 720px) {
  .topbar { gap: 12px; }
  .stats { display: none; }
  .account { border-left: 0; padding-left: 0; }
}
@media (prefers-reduced-motion: no-preference) {
  .card { transition: border-color .15s; }
  .card:hover { border-color: var(--amber-dim); }
  .roster-card { transition: border-color .15s; }
  .roster-card:hover { border-color: var(--amber-dim); }
  .work-card { transition: border-color .15s; }
  .work-card:hover { border-color: var(--amber-dim); }
}
@media (prefers-reduced-motion: reduce) {
  .btn:active { transform: none; }
  .btn-spinner { animation: none; opacity: .8; }
}
