/* Левая вертикальная полоска для private marks — чёрное стекло */
#private-strip {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50px;
  z-index: 2500;

  display: none;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 120px 8px 16px;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.55)
  );
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 4px 0 28px rgba(0, 0, 0, 0.9);

  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  user-select: none;
  -webkit-user-select: none;
}

/* отдельный элемент-иконка в левой полоске */
.private-strip-item {
  width: 28px;
  height: 42px;
  cursor: grab;
  opacity: 0.9;
  transition: transform 0.15s, opacity 0.15s, filter 0.15s;
}
.private-strip-item:hover {
  opacity: 1;
  transform: scale(1.08);
}
.private-strip-item:active {
  cursor: grabbing;
}

/* серый вариант иконки, когда тип выключен */
.private-strip-item.disabled {
  filter: grayscale(100%) brightness(0.4);
  opacity: 0.5;
}