/* ── modules/lbox/style.css ── */
/* Label box — centered on divider line, width adapts to text */

.sSV-lbox {
  position: absolute;
  top: 675px;
  height: 68px;
  background: #dbe0d7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 26px;
  box-sizing: border-box;
  font-family: var(--font);
  font-size: 24px;
  font-weight: 500;
  color: #0e122f;
  white-space: nowrap;
  z-index: 2;
  font-feature-settings: 'zero' 1, 'ss08' 1;
  width: max-content;
  min-width: 100px;
  transform: translateX(-50%);
}
