/* breakdown_popover.css — всплывающее окно с расшифровкой суммы з/п.
   Компонент: assets/js/lib/breakdown_popover.js (прораб / бухгалтер / монтажник). */

.bd-popover {
  position: fixed;
  z-index: 10000;
  width: 320px;
  max-width: 92vw;
  max-height: 60vh;
  overflow-y: auto;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .16);
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text, #222);
}

.bd-pop-head {
  font-weight: 700;
  font-size: 12px;
  color: var(--muted, #777);
  margin-bottom: 6px;
}

.bd-pop-list { display: flex; flex-direction: column; gap: 3px; }

.bd-pop-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}
.bd-pop-row span { color: var(--muted, #777); }
.bd-pop-row b { white-space: nowrap; }

.bd-pop-total {
  border-top: 1px solid var(--border, #e0e0e0);
  margin-top: 6px;
  padding-top: 6px;
  font-size: 14px;
}
.bd-pop-total span { color: var(--text, #222); font-weight: 600; }

.bd-pop-manual { color: var(--muted, #777); font-style: italic; }
.bd-pop-note { margin-top: 6px; font-size: 12px; color: var(--muted, #777); }

/* Анкер: сумма с пунктиром — подсказка, что есть расшифровка */
.bd-anchor {
  text-decoration: underline dotted;
  text-underline-offset: 3px;
  cursor: help;
}

[data-theme="dark"] .bd-popover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
}
