  :root {
    --bg:       #f8fafc;
    --surface:  #ffffff;
    --surface2: #f1f5f9;
    --border:   #e2e8f0;
    --text:     #1e293b;
    --muted:    #64748b;
    --accent:   #3b82f6;
    --ok:       #16a34a;
    --warn:     #d97706;
    --crit:     #dc2626;
    --penalty:  #7c3aed;
    --mono:     'IBM Plex Mono', monospace;
    --sans:     'IBM Plex Sans', sans-serif;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { background: var(--bg); color: var(--text); font-family: var(--sans);
         font-size: 14px; line-height: 1.6; min-height: 100vh; }

  /* ── Шапка ── */
  header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px; height: 52px;
    background: var(--surface); border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
  }
  .logo { font-family: var(--mono); font-size: 14px; font-weight: 600;
          letter-spacing: .05em; color: var(--accent); }
  .logo span { color: var(--muted); font-weight: 400; }
  .header-actions { display: flex; gap: 8px; align-items: center; }

  /* ── Кнопки ── */
  .btn { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px;
         border-radius: 6px; font-size: 12px; font-weight: 500; cursor: pointer;
         border: 1px solid transparent; transition: all .15s; font-family: var(--sans); }
  .btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
  .btn-primary:hover { background: #2563eb; }
  .btn-ghost  { background: transparent; color: var(--muted); border-color: var(--border); }
  .btn-ghost:hover  { color: var(--text); border-color: var(--muted); }
  .btn-sm { padding: 4px 10px; font-size: 11px; }
  .btn-ok   { background: rgba(22,163,74,.12); color: var(--ok); border-color: rgba(22,163,74,.3); }
  .btn-ok:hover { background: rgba(22,163,74,.22); }
  .btn-warn { background: rgba(220,38,38,.12); color: var(--crit); border-color: rgba(220,38,38,.3); }
  .btn-warn:hover { background: rgba(220,38,38,.22); }

  /* ── Лэйаут ── */
  .app { display: grid; grid-template-columns: 300px 1fr; height: calc(100vh - 52px); }

  /* ── Сайдбар ── */
  .sidebar { background: var(--surface); border-right: 1px solid var(--border);
             overflow-y: auto; display: flex; flex-direction: column; }
  .sidebar-section { padding: 16px; border-bottom: 1px solid var(--border); }
  .sidebar-title { font-family: var(--mono); font-size: 10px; font-weight: 600;
                   letter-spacing: .1em; color: var(--muted); text-transform: uppercase;
                   margin-bottom: 12px; }

  /* ── Загрузка файлов ── */
  .drop-zone {
    position: relative;
    border: 1.5px dashed var(--border); border-radius: 8px; padding: 16px;
    text-align: center; cursor: pointer; transition: all .2s; color: var(--muted);
  }
  /* file-input скрыт, открывается программно через .click() из JS */
  .drop-zone .file-input-overlay {
    display: none;
  }
  .drop-zone .drop-zone-ui {
    position: relative;
    z-index: 1;
  }
  .drop-zone:hover, .drop-zone.drag-over {
    border-color: var(--accent); color: var(--text);
    background: rgba(59,130,246,.05);
  }
  .drop-zone svg { margin-bottom: 6px; opacity: .5; }
  .drop-zone p { font-size: 11px; }

  .file-item {
    display: flex; align-items: center; gap: 8px; padding: 8px 10px;
    border-radius: 6px; margin-bottom: 4px; background: var(--surface2);
    border: 1px solid var(--border); position: relative;
  }
  .file-item .file-icon { font-size: 16px; flex-shrink: 0; }
  .file-item .file-info { flex: 1; min-width: 0; }
  .file-item .file-name { font-size: 11px; font-weight: 500; white-space: nowrap;
                           overflow: hidden; text-overflow: ellipsis; }
  .file-item .file-type { font-size: 10px; color: var(--muted); }
  .file-item .file-warn { font-size: 10px; color: var(--warn); margin-top: 2px; }
  .file-item .file-del  { color: var(--muted); cursor: pointer; font-size: 16px;
                           flex-shrink: 0; opacity: .5; }
  .file-item .file-del:hover { opacity: 1; color: var(--crit); }

  .period-row { display: flex; gap: 8px; margin-bottom: 12px; }
  .period-row select {
    flex: 1; background: var(--surface2); border: 1px solid var(--border);
    color: var(--text); padding: 6px 10px; border-radius: 6px; font-size: 12px;
    font-family: var(--sans);
  }

  /* ── Статистика ── */
  .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat-card {
    background: var(--surface2); border: 1px solid var(--border); border-radius: 8px;
    padding: 10px 12px; box-shadow: 0 1px 3px rgba(0,0,0,.08);
  }
  .stat-card .stat-val { font-family: var(--mono); font-size: 20px; font-weight: 600; }
  .stat-card .stat-lbl { font-size: 10px; color: var(--muted); margin-top: 2px; }
  .stat-ok   .stat-val { color: var(--ok); }
  .stat-warn .stat-val { color: var(--warn); }
  .stat-crit .stat-val { color: var(--crit); }
  .stat-blue .stat-val { color: var(--accent); }
  .stat-purple .stat-val { color: var(--penalty); }

  .progress-bar { height: 4px; border-radius: 2px; background: var(--border);
                  margin: 12px 0; overflow: hidden; }
  .progress-fill { height: 100%; border-radius: 2px; background: var(--ok);
                   transition: width .4s ease; }

  /* ── Вкладки главного экрана ── */
  .main-tabs {
    display: flex; gap: 0; border-bottom: 2px solid var(--border);
    background: var(--surface); padding: 0 16px;
  }
  .main-tab {
    padding: 9px 18px; font-size: 12px; font-weight: 500; font-family: var(--sans);
    background: none; border: none; color: var(--muted); cursor: pointer;
    border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .15s;
  }
  .main-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
  .main-tab:hover:not(.active) { color: var(--text); }

  /* ── Фильтры ── */
  .filters { padding: 12px 16px; border-bottom: 1px solid var(--border);
             display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
  .filter-btn {
    padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 500;
    cursor: pointer; border: 1px solid var(--border); background: transparent;
    color: var(--muted); transition: all .15s; font-family: var(--sans);
  }
  .filter-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
  .filter-btn:hover:not(.active) { color: var(--text); border-color: var(--muted); }
  .filter-select {
    background: var(--surface2); border: 1px solid var(--border); color: var(--text);
    padding: 4px 10px; border-radius: 6px; font-size: 11px; font-family: var(--sans);
    cursor: pointer;
  }
  .search-input {
    flex: 1; min-width: 160px; background: var(--surface2); border: 1px solid var(--border);
    color: var(--text); padding: 4px 12px; border-radius: 6px; font-size: 11px;
    font-family: var(--sans); outline: none;
  }
  .search-input:focus { border-color: var(--accent); }

  /* ── Основная таблица ── */
  .main { display: flex; flex-direction: column; overflow-y: auto; }
  .app.sidebar-hidden { grid-template-columns: 1fr; }
  .app.sidebar-hidden .sidebar { display: none; }
  #tab-registry { display: flex; flex-direction: column; flex: 1; overflow: hidden; min-height: 0; }
  #tab-analytics { flex: 1; overflow-y: auto; padding: 12px 16px; min-height: 0; }
  .table-wrap { flex: 1; overflow: auto; min-height: 0; }
  table { width: 100%; border-collapse: collapse; }
  thead { position: sticky; top: 0; z-index: 10; }
  th {
    background: var(--surface); padding: 8px 12px; text-align: left;
    font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .06em;
    color: var(--muted); text-transform: uppercase; border-bottom: 1px solid var(--border);
    white-space: nowrap;
  }
  td { padding: 8px 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
  tr:nth-child(odd) td { background: var(--surface2); }
  tr:hover td { background: rgba(59,130,246,.06); }

  /* Статусы */
  .badge {
    display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px;
    border-radius: 12px; font-size: 11px; font-weight: 500; white-space: nowrap;
  }
  .badge-ok     { background: rgba(22,163,74,.12);  color: #15803d; }
  .badge-warn   { background: rgba(217,119,6,.12);  color: #b45309; }
  .badge-crit   { background: rgba(220,38,38,.12);  color: var(--crit); }
  .badge-gray   { background: rgba(100,116,139,.12); color: var(--muted); }
  .badge-purple { background: rgba(124,58,237,.12); color: #6d28d9; }
  .badge-blue   { background: rgba(59,130,246,.12);  color: #2563eb; }

  /* Суммы */
  .num { font-family: var(--mono); font-size: 12px; text-align: right; white-space: nowrap; }
  .num-ok   { color: var(--ok); }
  .num-warn { color: var(--warn); }

  /* Строка деталей (раскрывающаяся) */
  .detail-row td { padding: 0; }
  .detail-wrap {
    padding: 12px 48px 16px; background: var(--surface2);
    border-bottom: 2px solid var(--accent);
  }
  .detail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 12px; }
  .detail-item .detail-lbl { font-size: 10px; color: var(--muted); margin-bottom: 2px; }
  .detail-item .detail-val { font-family: var(--mono); font-size: 12px; }
  .detail-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
  .confirm-input {
    flex: 1; background: var(--surface); border: 1px solid var(--border);
    color: var(--text); padding: 6px 12px; border-radius: 6px; font-size: 12px;
    font-family: var(--sans); outline: none;
  }
  .confirm-input:focus { border-color: var(--accent); }
  .amount-input {
    width: 120px; background: var(--surface); border: 1px solid var(--border);
    color: var(--text); padding: 6px 12px; border-radius: 6px; font-size: 12px;
    font-family: var(--mono); outline: none; text-align: right;
  }
  .amount-input:focus { border-color: var(--accent); }

  .note-confirmed { font-size: 11px; color: var(--ok); margin-top: 8px; }
  .note-rejected  { font-size: 11px; color: var(--crit); margin-top: 8px; }

  /* Пустое состояние */
  .empty-state {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    height: 100%; color: var(--muted); gap: 12px;
  }
  .empty-state svg { opacity: .3; }
  .empty-state p { font-size: 13px; }
  .empty-state .empty-hint { font-size: 11px; color: var(--muted); text-align: center; max-width: 320px; line-height: 1.5; }

  /* Лоадер */
  .loader { display: inline-block; width: 14px; height: 14px; border: 2px solid var(--border);
             border-top-color: var(--accent); border-radius: 50%; animation: spin .6s linear infinite; }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* Toast */
  #toast {
    position: fixed; bottom: 24px; right: 24px; padding: 10px 16px;
    background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
    font-size: 12px; transition: all .3s; opacity: 0; transform: translateY(8px);
    pointer-events: none; z-index: 999; box-shadow: 0 4px 12px rgba(0,0,0,.1);
  }
  #toast.show { opacity: 1; transform: translateY(0); }
  #toast.ok   { border-color: var(--ok); color: var(--ok); }
  #toast.warn { border-color: var(--warn); color: var(--warn); }

  /* Счётчик прогресса */
  .progress-label {
    font-family: var(--mono); font-size: 11px; color: var(--muted);
    display: flex; justify-content: space-between; margin-bottom: 4px;
  }
  .progress-label span:last-child { color: var(--ok); }

  .channel-dot {
    display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 4px;
  }
  .ch-ostrovok { background: #3b82f6; }
  .ch-avito    { background: #f59e0b; }
  .ch-direct   { background: #22c55e; }
  .ch-google   { background: #34d399; }
  .ch-tbank    { background: #fbbf24; }
  .ch-yandex   { background: #f87171; }
  .ch-sutochno { background: #94a3b8; }
  .ch-bronevik { background: #c084fc; }
  .ch-roomlink { background: #6ee7b7; }

  .row-expanded { background: rgba(59,130,246,.04); }
  .expand-btn { cursor: pointer; color: var(--muted); font-size: 12px;
                transition: transform .2s; display: inline-block; }
  .expand-btn.open { transform: rotate(90deg); }

  /* replace-input остаётся скрытым, открывается только через .click() */
  input[type=file]#replace-input { display: none !important; }

  /* ── Секция каналов ── */
  .channel-list { display: flex; flex-direction: column; gap: 4px; }
  .channel-row {
    display: flex; align-items: center; gap: 8px; padding: 5px 8px;
    border-radius: 6px; font-size: 11px;
    background: var(--surface2); border: 1px solid var(--border);
  }
  .channel-row .ch-icon { font-size: 14px; flex-shrink: 0; }
  .channel-row .ch-name { flex: 1; color: var(--text); }
  .channel-row .ch-status { font-size: 10px; font-family: var(--mono); flex-shrink: 0; }
  .channel-row.ch-ok   { border-color: rgba(22,163,74,.3); }
  .channel-row.ch-miss { border-color: rgba(217,119,6,.3); }
  .channel-row.ch-excl { opacity: .45; }

  /* ── OTA-индикатор в строке таблицы ── */
  .ota-dot {
    display: inline-block; width: 6px; height: 6px; border-radius: 50%;
    margin-left: 4px; vertical-align: middle; flex-shrink: 0;
  }
  .ota-dot-ok   { background: var(--ok);   opacity: .8; }
  .ota-dot-miss { background: var(--muted); opacity: .5; }

  /* Доп. услуги — бейдж в колонке Касса */
  .svc-badge {
    display: inline-flex; align-items: center; gap: 3px;
    font-size: 11px; font-family: var(--mono);
    color: #0369a1; background: #e0f2fe;
    border: 1px solid #bae6fd; border-radius: 10px;
    padding: 1px 7px; margin-left: 4px;
    cursor: default; white-space: nowrap;
  }

  /* ── Модальные окна (modal-overlay / modal-box) ── */
  .modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 1000;
    display: flex; align-items: center; justify-content: center;
  }
  .modal-box {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; padding: 24px; width: 90%; max-width: 520px;
    max-height: 90vh; overflow-y: auto;
  }
  .modal-box h3 { margin: 0 0 16px; font-size: 15px; color: var(--text); }
  .modal-box label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 4px; margin-top: 12px; }
  .modal-box input[type=text], .modal-box input[type=number] {
    width: 100%; box-sizing: border-box;
    background: var(--surface2); border: 1px solid var(--border);
    color: var(--text); border-radius: 6px; padding: 7px 10px; font-size: 13px;
  }
  .modal-box .modal-actions { display: flex; gap: 8px; margin-top: 20px; justify-content: flex-end; }

  /* Скроллбар */
  ::-webkit-scrollbar { width: 6px; height: 6px; }
  ::-webkit-scrollbar-track { background: var(--surface2); }
  ::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
  ::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

  /* Forecast delta indicators */
  .delta-pos { color: #22c55e; font-weight: 500; }
  .delta-neg { color: #ef4444; font-weight: 500; }

  /* ── Forecast v2 ── */

  .fc-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px; flex-wrap: wrap; gap: 8px;
    position: sticky; top: 52px; z-index: 50;
    background: var(--bg); padding: 10px 0 8px; margin: 0 0 12px;
  }
  .fc-header-left { display: flex; align-items: center; gap: 8px; }
  .fc-header-right { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
  .fc-updated { font-size: 12px; color: var(--muted); font-family: var(--mono); }

  .btn-refresh { background: var(--ok); color: #fff; border-color: var(--ok); }
  .btn-refresh:hover { background: #15803d; border-color: #15803d; }

  .fc-filters { display: flex; gap: 4px; flex-wrap: wrap; }
  .fc-filter-btn {
    padding: 4px 12px; font-size: 11px; border-radius: 16px;
    border: 1px solid var(--border); background: var(--surface);
    color: var(--muted); cursor: pointer; transition: all .15s;
  }
  .fc-filter-btn:hover { border-color: var(--accent); color: var(--text); }
  .fc-filter-btn.active {
    background: var(--accent); color: #fff; border-color: var(--accent);
  }

  .fc-section {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 10px; padding: 14px 16px; margin-bottom: 12px;
  }
  .fc-section-title {
    font-size: 11px; font-weight: 600; letter-spacing: .06em;
    color: var(--muted); margin-bottom: 10px; text-transform: uppercase;
  }
  .fc-section-title.fc-collapsible {
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    user-select: none;
  }
  .fc-chevron { font-size: 10px; transition: transform .2s; color: var(--muted); }
  .fc-chevron.open { transform: rotate(90deg); }

  .fc-kpi-row {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }
  .fc-kpi {
    background: var(--surface2); border-radius: 8px; padding: 10px 12px;
    text-align: center;
  }
  .fc-kpi-label { font-size: 10px; color: var(--muted); margin-bottom: 4px; text-transform: uppercase; }
  .fc-kpi-value { font-size: 20px; font-weight: 600; font-family: var(--mono); line-height: 1.2; }
  .fc-kpi-sub {
    font-size: 10px; color: var(--muted); margin-top: 4px; line-height: 1.4;
    font-family: var(--mono);
  }

  .fc-sub-row {
    margin-top: 8px; font-size: 12px; color: var(--text);
    display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  }
  .fc-sub-row.fc-gaps {
    margin-top: 10px; font-size: 11px; color: var(--warn);
  }

  .fc-chart-wrap {
    margin-top: 12px;
    background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
    padding: 12px 8px; overflow: visible;
  }

  /* Chart tooltip */
  .fc-chart-tooltip {
    position: absolute; z-index: 10;
    background: var(--bg); border: 1px solid var(--border); border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    padding: 8px 12px; font-size: 11px; line-height: 1.5;
    pointer-events: none; white-space: nowrap;
    transform: translateX(-50%) translateY(-100%);
  }
  .fc-chart-tooltip b { font-weight: 600; }

  /* Progress bar (mini) */
  .fc-progress {
    height: 4px; background: var(--surface2); border-radius: 2px;
    margin-top: 6px; overflow: hidden;
  }
  .fc-progress-fill {
    height: 100%; border-radius: 2px; transition: width .3s ease;
  }

  /* Channel rows */
  .fc-channel-row {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 0; border-bottom: 1px solid var(--surface2); font-size: 12px;
  }
  .fc-channel-row:last-child { border-bottom: none; }
  .fc-channel-info {
    flex: 0 0 140px; display: flex; flex-direction: column;
  }
  .fc-channel-name { font-weight: 500; }
  .fc-channel-count { font-size: 10px; color: var(--muted); }
  .fc-channel-bar-wrap {
    flex: 1; height: 8px; background: var(--surface2); border-radius: 4px;
    overflow: hidden;
  }
  .fc-channel-bar {
    height: 100%; background: #3b82f6; border-radius: 4px;
    transition: width .3s ease;
  }
  .fc-channel-rev {
    flex: 0 0 90px; text-align: right;
    font-family: var(--mono); font-weight: 500; font-size: 11px;
  }

  /* Weekly revenue rows */
  .fc-week-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 0; border-bottom: 1px solid var(--surface2); font-size: 12px;
  }
  .fc-week-row:last-child { border-bottom: none; }
  .fc-week-label { color: var(--muted); flex: 1; }
  .fc-week-revenue { font-family: var(--mono); font-weight: 500; }
  .fc-week-note { font-size: 10px; color: var(--muted); margin-left: 8px; }
  .fc-week-row.current { background: rgba(59,130,246,.05); border-radius: 4px; padding: 6px 8px; }

  /* Pace */
  .fc-pace {
    display: flex; gap: 20px; align-items: center; font-size: 13px;
    flex-wrap: wrap;
  }
  .fc-pace-value { font-family: var(--mono); font-weight: 500; }
  .fc-pace-trend { font-size: 18px; }

  /* Weekly pace */
  .fc-weekly-pace { margin-top: 12px; }
  .fc-weekly-pace-title { font-size: 11px; color: var(--muted); text-transform: uppercase; margin-bottom: 6px; }
  .fc-wpace-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; font-size: 12px; }
  .fc-wpace-label { min-width: 90px; color: var(--muted); font-size: 11px; }
  .fc-wpace-bar-wrap { flex: 1; height: 14px; background: var(--surface2); border-radius: 4px; overflow: hidden; }
  .fc-wpace-bar { height: 100%; background: var(--accent); border-radius: 4px; transition: width .3s; }
  .fc-wpace-val { min-width: 140px; text-align: right; font-family: var(--mono); font-size: 11px; }

  /* Objects table */
  .fc-group-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 12px; background: var(--surface2); border-radius: 6px;
    cursor: pointer; user-select: none; margin-bottom: 4px; font-size: 12px;
    font-weight: 500;
  }
  .fc-group-header:hover { background: #e2e8f0; }
  .fc-obj-table {
    width: 100%; border-collapse: collapse; font-size: 11px;
    margin-bottom: 8px;
  }
  .fc-obj-table th {
    text-align: left; padding: 4px 8px; color: var(--muted);
    font-weight: 500; border-bottom: 1px solid var(--border);
  }
  .fc-obj-table th.num { text-align: right; }
  .fc-obj-table td { padding: 4px 8px; border-bottom: 1px solid var(--surface2); }
  .fc-obj-table td.num { text-align: right; font-family: var(--mono); }

  /* Cancel details */
  .fc-cancel-item {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 8px 0; border-bottom: 1px solid var(--surface2); font-size: 12px;
    gap: 12px;
  }
  .fc-cancel-item:last-child { border-bottom: none; }
  .fc-cancel-info { flex: 1; min-width: 0; }
  .fc-cancel-main { font-weight: 500; margin-bottom: 2px; }
  .fc-cancel-meta { font-size: 11px; color: var(--muted); }
  .fc-cancel-loss {
    color: var(--crit); font-family: var(--mono); font-weight: 500;
    white-space: nowrap; flex-shrink: 0;
  }

  /* Hint tooltip (?) */
  .fc-hint {
    display: inline-flex; align-items: center; justify-content: center;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--surface2); color: var(--muted);
    font-size: 9px; font-weight: 600; cursor: help;
    position: relative; vertical-align: middle; margin-left: 3px;
    font-family: var(--sans); line-height: 1;
  }
  .fc-hint:hover::after {
    content: attr(data-hint);
    position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
    background: var(--text); color: var(--bg); font-size: 11px; font-weight: 400;
    padding: 6px 10px; border-radius: 6px; white-space: normal;
    width: max-content; max-width: 240px; z-index: 60;
    margin-bottom: 6px; line-height: 1.4; text-transform: none;
    letter-spacing: 0;
  }
