/* Стили страницы «Продавливание». Подключается в punching.html
   после assets/css/style.css — порядок каскада обязателен. */

body { opacity: 0; }
.is-hidden { display: none !important; }

/* ── Сегментированные радио-кнопки ─────────────────────────── */
.pun-segmented {
  display: grid; gap: 4px;
  background: #e1eaf7; border: 1px solid #c7d5ec;
  border-radius: 10px; padding: 3px; margin-bottom: 8px;
}
.pun-segmented label {
  text-align: center; padding: 8px 10px; font-size: 13px; font-weight: 600;
  border-radius: 8px; cursor: pointer; color: #475569;
  transition: all .15s; user-select: none;
}
.pun-segmented label:hover { color: #214e99; }
.pun-segmented input { display: none; }
.pun-segmented label:has(input:checked) {
  background: #214e99; color: #fff;
  box-shadow: 0 1px 3px rgba(33,78,153,0.25);
}
/* Заглушка: вариант, не предусмотренный расчётным модулем для текущей
   схемы (автоподбор при капители/круглой/стене, край по Y при стене…) —
   тусклый, не кликается; пояснение — в title при наведении. */
.pun-segmented label:has(input:disabled) {
  opacity: .45; cursor: not-allowed; color: #64748b;
}
.pun-segmented label:has(input:disabled):hover { color: #64748b; }
.pun-segmented label:has(input:disabled input:checked),
.pun-segmented label:has(input:checked:disabled) {
  background: #7f9cc9; color: #eef2f9; box-shadow: none;
}
/* ── Грид полей ввода ──────────────────────────────────────── */
.pun-row { display: grid; gap: 10px; align-items: start; }
.pun-row-2 { grid-template-columns: 1fr 1fr; }
.pun-row-3 { grid-template-columns: 1fr 1fr 1fr; }

/* ── Раскрывающаяся группа (advanced fields) — унифицировано ── */
.pun-collapse {
  margin-top: 10px; padding: 12px 14px; background: #f8fafc;
  border: 1px solid #e2e8f0; border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.pun-collapse--accent { background: #eff6ff; border-color: #bfdbfe; }
.pun-collapse > .form-grid-2:first-child,
.pun-collapse > .field:first-child,
.pun-collapse > p:first-child { margin-top: 0; }

/* ── Чекбокс-тумблер для опциональных блоков ───────────────── */
.pun-toggle-block {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  border: 1px solid #cbd5e1; border-radius: 10px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all .15s;
}
.pun-toggle-block:hover { border-color: #93c5fd; }
.pun-toggle-block input { width: 16px; height: 16px; cursor: pointer; }
.pun-toggle-block:has(input:checked) {
  background: linear-gradient(180deg, #eff6ff, #dbeafe);
  border-color: #3b82f6;
}
.pun-toggle-block .material-symbols-outlined {
  font-size: 18px; color: #3b82f6;
}
/* Заблокированный тумблер (схема не поддерживает опцию) — тускло, курсор-запрет.
   Пояснение причины даётся в native title (как у радио «стена на углу»). */
.pun-toggle-block.is-locked {
  opacity: .5; cursor: not-allowed;
  background: linear-gradient(180deg, #f1f5f9, #e2e8f0); border-color: #cbd5e1;
}
.pun-toggle-block.is-locked:hover { border-color: #cbd5e1; }
.pun-toggle-block.is-locked input { cursor: not-allowed; }
.pun-toggle-block.is-locked .material-symbols-outlined { color: #94a3b8; }

/* ── Унификация ввода: ШРИФТЫ И ВНЕШНИЙ ВИД 1-в-1 как в anchorage / embedded ──
   (label 14px/600, input 14px, fieldset без рамок, legend 13px без UPPERCASE) */
#pun-form .field { gap: 4px; }
#pun-form .field label { font-size: 14px !important; font-weight: 600 !important; color: #374151 !important; line-height: 1.3; }
#pun-form .field input,
#pun-form .field select {
  font-size: 14px; padding: 8px 10px;
  border: 1px solid #E2E8F0; border-radius: 8px;
  background: #e1eaf7;  /* как в anchorage/embedded */
}
/* read-only вариант — заметно светлее, чтобы отличать от редактируемого */
#pun-form .field input[readonly],
#pun-form .field input:disabled {
  background: #f1f5f9;
}
#pun-form .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-items: end; }
#pun-form .pun-segmented + .form-grid-2,
#pun-form .form-grid-2 + .pun-segmented,
#pun-form .form-grid-2 + .form-grid-2 { margin-top: 10px; }
/* Legend = заголовок секции — ровно как в anchorage: 13px / 600 / обычный регистр */
#pun-form .fieldset > legend {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px !important; font-weight: 600 !important;
  color: #374151 !important;
  padding: 0 6px !important; margin: 0 !important;
  text-transform: none !important; letter-spacing: 0;
}
#pun-form .fieldset > legend .material-symbols-outlined {
  font-size: 14px !important; color: #214e99;
}
/* Fieldset — без рамок, минимальный padding (между anchorage и embedded) */
#pun-form .fieldset.stretch {
  padding: 4px 0 0 !important;
  border: none !important;
  background: transparent !important;
  margin: 0 0 12px !important;
}
/* Сегментированные радио */
#pun-form .pun-segmented { margin-bottom: 8px; }
#pun-form .pun-segmented label { font-size: 13px !important; padding: 8px 10px; }
/* Чек-метки */
#pun-form label.check { font-size: 13px !important; font-weight: 600; color: #374151; margin: 6px 0 !important; }
/* Текстовые подсказки */
#pun-form .pun-collapse p,
#pun-form .opening-card p { font-size: 12px; line-height: 1.45; color: #475569; }
/* Кнопки действий (компактнее) */
.pun-actions__sec { font-size: 12px !important; padding: 9px !important; }
/* Кнопки «подобрать» — outline по умолчанию, синие при активации */
.pun-design-btn {
  background: #fff !important;
  color: #475569 !important;
  border: 1.5px solid #cbd5e1 !important;
  transition: all .15s;
}
.pun-design-btn:hover:not(.is-active) {
  border-color: #94a3b8 !important;
  background: #f8fafc !important;
}
.pun-design-btn.is-active {
  background: #214e99 !important;
  color: #fff !important;
  border-color: #214e99 !important;
  box-shadow: 0 2px 6px rgba(33,78,153,0.25);
}
/* Дисклеймер «теоретического» подбора */
.pun-design-disclaimer {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 10px; padding: 10px 12px;
  background: #fffbeb; border: 1px solid #fcd34d; border-left: 3px solid #d97706;
  border-radius: 8px;
  font-size: 11.5px; line-height: 1.45; color: #78350f;
}
.pun-design-disclaimer .material-symbols-outlined {
  font-size: 18px; color: #d97706; flex-shrink: 0; margin-top: 1px;
}
.pun-design-disclaimer b { color: #92400e; }

/* ── Статус-плашка положения ───────────────────────────────── */
.pos-badge {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  border-radius: 10px; font-size: 13px; font-weight: 600;
  margin: 0 0 10px;
}
.pos-badge--interior { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.pos-badge--edge     { background: #fef3c7; color: #854d0e; border: 1px solid #fde68a; }
.pos-badge--corner   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.pos-badge .material-symbols-outlined { font-size: 22px; }

/* ── Результаты ───────────────────────────────────────────── */
.res-table { width: 100%; border-collapse: collapse; margin: 6px 0; font-size: 13px; }
.res-table th { background: #f1f5f9; padding: 6px 10px; text-align: left; font-weight: 700; font-size: 12px; color: #475569; border-radius: 6px; }
.res-table td { padding: 5px 10px; border-bottom: 1px solid #f1f5f9; }
.res-table.highlight { border: 2px solid #4871b9; border-radius: 10px; overflow: hidden; }

/* ── Карточка отверстия ────────────────────────────────────── */
.opening-card {
  background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 10px;
  padding: 12px; margin-top: 8px; position: relative;
  min-width: 0; box-sizing: border-box; overflow: hidden;
}
.opening-card__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px; font-size: 13px; font-weight: 700; color: #1e40af;
}
.opening-card__del {
  background: none; border: none; cursor: pointer; color: #dc2626;
  font-size: 18px; padding: 2px 6px; border-radius: 6px;
}
.opening-card__del:hover { background: #fee2e2; }
/* Переключатель формы отверстия (прямоугольное / круглое) */
.opening-shape-toggle {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  background: #fff; border: 1px solid #bfdbfe; border-radius: 8px;
  padding: 3px; margin-bottom: 6px;
}
.opening-shape-toggle label {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 6px 8px; font-size: 12px; font-weight: 600; color: #1e40af;
  border-radius: 6px; cursor: pointer; transition: all .15s;
}
.opening-shape-toggle input[type="radio"] { display: none; }
.opening-shape-toggle label:has(input:checked) {
  background: #2563eb; color: #fff;
}
/* Жёстко прижимаем поля внутрь карточки: сетка может схлопываться */
.opening-card .form-grid-2 { min-width: 0; }
.opening-card .form-grid-2 > .field { min-width: 0; }
.opening-card .form-grid-2 > .field input {
  width: 100%; min-width: 0; box-sizing: border-box;
}
/* Защита от выхода всего fieldset за границу панели */
#pun-form .fieldset.stretch, #pun-form .fieldset { min-width: 0; }
#pun-openings-list { min-width: 0; }

.pun-add-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px 14px;
  background: #f0f9ff; border: 2px dashed #94a3b8; border-radius: 10px;
  cursor: pointer; font-size: 14px; font-weight: 700; color: #214e99;
  transition: all .15s; margin-top: 12px;
}
.pun-add-btn:hover { border-color: #214e99; color: #1a3d77; background: #dbeafe; border-style: solid; }
.pun-add-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.pun-add-btn .material-symbols-outlined { font-size: 20px; }

/* ── Действия (кнопки внизу) ───────────────────────────────── */
.pun-actions {
  display: grid; grid-template-columns: 1fr; gap: 8px;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line);
}
.pun-actions__main {
  padding: 14px; background: #214e99; color: #fff;
  border: none; border-radius: 10px; font-size: 15px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .15s;
}
.pun-actions__main:hover { background: #1a3d77; }
.pun-actions__row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pun-actions__sec {
  padding: 10px; background: #fff; color: #214e99;
  border: 1.5px solid #214e99; border-radius: 10px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: all .15s;
}
.pun-actions__sec:hover { background: #214e99; color: #fff; }
.pun-actions__sec[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ── Предупреждение (h ≥ 180 мм и т.п.) ────────────────────── */
.pun-warn {
  display: flex; align-items: flex-start; gap: 8px; padding: 8px 12px;
  background: #fef3c7; border-left: 3px solid #d97706;
  border-radius: 0 8px 8px 0; font-size: 12px; color: #92400e;
  margin: 8px 0; line-height: 1.4;
}
.pun-warn .material-symbols-outlined { font-size: 18px; flex-shrink: 0; color: #d97706; }
.pun-warn b { color: #78350f; }

/* ── Вкладки ввода (3 колонки) — компактный шрифт под длинные надписи */
.tabs--3 { grid-template-columns: 1fr 1fr 1fr !important; }
#pun-input-tabs .tabs__btn {
  font-size: 12.5px; padding: 9px 6px; min-height: 36px;
  line-height: 1.2; text-align: center; letter-spacing: 0;
}
.tab-pane { display: none; padding-top: 14px; }
.tab-pane--active { display: block; }

/* ── Вкладки визуализации (2 колонки: 2D План / Разрез) ───── */
.view-tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  background: #e1eaf7; border: 1px solid #E2E8F0; border-radius: 10px;
  overflow: hidden; margin-bottom: 8px;
}
.view-tabs__btn {
  padding: 9px 6px; text-align: center; font-weight: 600; font-size: 13px;
  border: none; background: transparent; cursor: pointer;
  transition: background .2s, color .2s; color: var(--ink);
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.view-tabs__btn .material-symbols-outlined { font-size: 17px; }
.view-tabs__btn--active { background: #214e99; color: #fff; }
.view-pane { display: none; }
.view-pane--active { display: block; }

/* ── Результаты: вкладки ──────────────────────────────────── */
.res-tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  background: #e1eaf7; border: 1px solid #E2E8F0; border-radius: 10px;
  overflow: hidden; margin-bottom: 14px;
}
.res-tabs__btn {
  padding: 10px 10px; text-align: center; font-weight: 600; font-size: 14px;
  border: none; background: transparent; cursor: pointer;
  transition: background .2s, color .2s; color: var(--ink); min-height: 38px;
}
.res-tabs__btn--active { background: #214e99; color: #fff; }
.res-pane { display: none; }
.res-pane--active { display: block; }

/* ── Hero-карточка результатов ────────────────────────────── */
.result-hero-pun {
  display: flex; align-items: center; gap: 12px; padding: 18px; border-radius: 14px;
  border: 2px solid; margin-bottom: 14px; text-align: center; flex-direction: column;
}
.result-hero-pun--ok { background: linear-gradient(180deg, #f0fdf4, #fff); border-color: #16a34a; }
.result-hero-pun--fail { background: linear-gradient(180deg, #fef2f2, #fff); border-color: #dc2626; }
.result-hero-pun__icon { font-size: 36px; line-height: 1; }
.result-hero-pun__title { font-size: 18px; font-weight: 700; }
.result-hero-pun__sub { font-size: 13px; color: #64748b; margin-top: 2px; }

/* ── Раскрывающиеся блоки деталей ─────────────────────────── */
.pun-details { font-size: 13px; }
.pun-details summary { list-style: none; position: relative; transition: background .15s; }
.pun-details summary::-webkit-details-marker { display: none; }
.pun-details summary::after {
  content: '▸'; position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%); font-size: 14px; transition: transform .2s;
  color: #64748b;
}
.pun-details[open] summary::after { transform: translateY(-50%) rotate(90deg); }
.pun-details summary:hover { filter: brightness(0.97); }

/* ── Формулы ──────────────────────────────────────────────── */
.formula-block { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 14px; margin: 10px 0; }
.formula-block__title { font-size: 12px; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.formula-step { margin: 6px 0; padding: 8px 12px; border-left: 3px solid #4871b9; background: #fff; border-radius: 0 8px 8px 0; font-size: 13px; }
.formula-step b { color: #214e99; }

/* ── Нормативные документы ────────────────────────────────── */
.norms-aside { margin-top: 14px; }
.norms-aside h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.norms-aside ul { padding-left: 18px; font-size: 13px; }
.norms-aside li { margin-bottom: 4px; }
.norms-aside a { color: #214e99; text-decoration: underline; }

/* ── Результаты: используем общий стиль .results__wrap из main CSS ── */
/* (унифицировано с anchorage/embedded — две колонки на десктопе, одна на мобильных) */

/* ── Значок единиц измерения ─────────────────────────────── */
.unit-badge {
  display: inline-block; min-width: 40px; padding: 6px 8px;
  background: #e1eaf7; border: 1px solid #c7d5ec; border-radius: 8px;
  font-size: 12px; font-weight: 600; color: #214e99; text-align: center;
  white-space: nowrap; flex-shrink: 0;
}

/* (CSS тумблеров отображения 3D удалён вместе с самой вкладкой) */

/* ── Интерактивные размеры в SVG ──────────────────────────── */
.dim-interactive { cursor: pointer; }
.dim-interactive rect { transition: fill .15s; }
.dim-interactive:hover rect { fill: #dbeafe !important; }

/* ── Drag-эффект для отверстий ─────────────────────────────── */
.pun-op-drag:hover .pun-op-halo { opacity: 0.45 !important; transition: opacity .15s; }
.pun-op-drag:active { filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.3)); }

/* ── Кнопка убрать край (×) ────────────────────────────────── */
.pun-edge-remove circle { transition: fill .15s; }
.pun-edge-remove:hover circle { fill: #fee2e2 !important; }

/* ── Оверлей редактирования размера ──────────────────────── */
#pun-dim-editor {
  display: none; position: fixed; z-index: 2000;
  background: #fff; border: 2px solid #214e99; border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18); padding: 6px;
  flex-direction: column; gap: 4px;
}
#pun-dim-editor.is-open { display: flex; }
#pun-dim-input {
  width: 100px; padding: 8px 10px; border: 1px solid #e2e8f0; border-radius: 7px;
  font-size: 15px; font-weight: 700; font-family: inherit; text-align: center;
  background: #e1eaf7; color: var(--ink);
}
#pun-dim-input:focus { outline: none; border-color: #214e99; }
#pun-dim-label {
  font-size: 11px; font-weight: 600; color: #64748b; text-align: center; padding: 0 4px;
}
#pun-dim-hint {
  font-size: 10px; color: #94a3b8; text-align: center;
}

/* ── Пилл-переключатель в topbar (норматив расчёта) ──────── */
.pun-norm-pill {
  display: inline-flex; gap: 0; padding: 3px;
  background: #e1eaf7; border: 1px solid #c7d5ec; border-radius: 999px;
  margin-right: 8px;
}
.pun-norm-pill label {
  padding: 5px 12px; font-size: 12px; font-weight: 600; color: #475569;
  cursor: pointer; border-radius: 999px; transition: all .15s; user-select: none;
  display: inline-flex; align-items: center; gap: 4px;
}
.pun-norm-pill label:hover { color: #214e99; }
.pun-norm-pill input { display: none; }
.pun-norm-pill label:has(input:checked) {
  background: #214e99; color: #fff;
  box-shadow: 0 1px 3px rgba(33,78,153,0.25);
}
.pun-norm-pill .material-symbols-outlined { font-size: 14px; }

/* ── h₀: прямой ввод + раскрытие через арматуру ──────────── */
.pun-h0-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; background: #fff; color: #214e99;
  border: 1px solid #c7d5ec; border-radius: 8px; cursor: pointer;
  font-size: 12px; font-weight: 600; transition: all .15s;
  margin-top: 6px;
}
.pun-h0-toggle:hover { background: #e1eaf7; }
.pun-h0-toggle.is-open { background: #214e99; color: #fff; border-color: #214e99; }
.pun-h0-toggle .material-symbols-outlined { font-size: 14px; transition: transform .2s; }
.pun-h0-toggle.is-open .material-symbols-outlined { transform: rotate(180deg); }
.pun-h0-readonly { background: #f8fafc !important; color: #64748b !important; cursor: not-allowed; }

/* ── Экспертный режим (унифицировано с anchorage / embedded) ─
   Стили блока берутся из общего CSS-правила #advanced-fieldset
   (см. assets/css/style.css, селектор расширен на #pun-expert-fieldset).
   Дополнительно: внешний вид fieldset и legend — как в anchorage. */
#pun-expert-fieldset {
  margin-top: 10px; padding: 12px 14px; background: #f8fafc;
  border: 1px solid #e2e8f0; border-radius: 10px;
}
#pun-expert-fieldset legend {
  font-size: 12px; font-weight: 700; color: #374151; padding: 0 6px;
}

/* (модалки подбора удалены — результат подбора отображается прямо
   в правой панели после нажатия «Подобрать поперечную арматуру») */

/* ── Кнопка «Пояснение к расчёту» (в шапке) ───────────────── */
.pun-about-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px; padding: 8px 14px;
  background: #fff; color: #214e99; text-decoration: none;
  border: 1.5px solid #c7d5ec; border-radius: 999px;
  font-size: 13px; font-weight: 600; font-family: inherit; cursor: pointer;
  transition: all .15s;
}
.pun-about-btn:hover { background: #214e99; color: #fff; border-color: #214e99; }
.pun-about-btn .material-symbols-outlined { font-size: 18px; }

/* ── SEO-контент (видимый блок под калькулятором) ─────────── */
.seo-content { max-width: 900px; margin: 32px auto 0; padding: 0 4px; }
.seo-content summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; color: #214e99;
  padding: 14px 18px; background: #f1f5f9; border-radius: 12px;
}
.seo-content summary::-webkit-details-marker { display: none; }
.seo-content summary::before {
  content: '+'; width: 18px; text-align: center;
  font-size: 18px; font-weight: 700;
}
.seo-content details[open] summary::before { content: '\2212'; }
.seo-content details[open] summary { border-radius: 12px 12px 0 0; }
.seo-content__body { padding: 18px 18px 4px; }
.seo-content h2 {
  font-size: 18px; font-weight: 700; color: #214e99;
  margin: 20px 0 8px; line-height: 1.25;
}
.seo-content h2:first-of-type { margin-top: 0; }
.seo-content p {
  margin: 0 0 8px; max-width: 90ch;
  font-size: 14px; line-height: 1.6; color: var(--ink, #1e293b);
}
.seo-content i { font-style: italic; }
@media (max-width: 640px) {
  .seo-content { margin-top: 24px; }
  .seo-content summary { font-size: 14px; padding: 12px 14px; }
  .seo-content__body { padding: 14px 14px 4px; }
  .seo-content h2 { font-size: 16px; }
}

/* ── Плавающая панель тумблеров отображения размеров поверх 2D-плана ──────── */
.pun-plan-figure { position: relative; }
.pun-plan-toolbar {
  position: absolute; top: 8px; right: 8px; z-index: 5;
  display: flex; flex-direction: column; gap: 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d3dced; border-radius: 10px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(3px);
  font-family: 'Exo 2', sans-serif; overflow: hidden;
  user-select: none;
}
.pun-plan-toolbar__head {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px; border: 0; background: transparent; cursor: pointer;
  font-size: 11.5px; font-weight: 700; color: #334155;
  font-family: inherit;
}
.pun-plan-toolbar__head .material-symbols-outlined { font-size: 15px; color: #214e99; }
.pun-plan-toolbar__chev { margin-left: auto; transition: transform .2s; }
.pun-plan-toolbar.is-collapsed .pun-plan-toolbar__chev { transform: rotate(180deg); }
.pun-plan-toolbar__body {
  display: flex; flex-direction: column; gap: 2px;
  padding: 2px 8px 8px;
}
.pun-plan-toolbar.is-collapsed .pun-plan-toolbar__body { display: none; }
.pun-plan-toolbar__item {
  display: flex; align-items: center; gap: 6px; width: 100%;
  font-size: 11px; font-weight: 500; color: #475569; cursor: pointer;
  padding: 2px 2px; border-radius: 5px;
  border: 0; background: transparent; text-align: left; font-family: inherit;
}
.pun-plan-toolbar__item:hover { background: #eff4fb; }
.pun-plan-toolbar__item .pun-eye-glyph { font-size: 12px; width: 14px; text-align: center; line-height: 1; }
.pun-plan-toolbar__item[aria-pressed="false"] { color: #94a3b8; }
@media (max-width: 640px) {
  .pun-plan-toolbar { top: 4px; right: 4px; }
  .pun-plan-toolbar__body { padding: 2px 6px 6px; }
}
