/* BCM Batch 77 — adjustable conversation/room list divider */
@media (min-width: 761px) {
  ._collapsibleLayout_1k816_45 {
    position: relative;
  }

  .bcm-chat-splitter {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--chat-list-width) - 6px);
    width: 12px;
    z-index: 8;
    cursor: col-resize;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    outline: none;
    background: transparent;
  }

  .bcm-chat-splitter::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
    width: 1px;
    background: var(--border);
    transition: width .12s ease, background-color .12s ease, box-shadow .12s ease;
  }

  .bcm-chat-splitter:hover::before,
  .bcm-chat-splitter:focus-visible::before,
  .bcm-chat-splitter[data-dragging="true"]::before {
    left: 4px;
    width: 3px;
    background: var(--primary);
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--primary) 18%, transparent);
  }

  .bcm-chat-splitter:focus-visible {
    box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--primary) 35%, transparent);
  }

  ._collapsibleLayout_1k816_45._listCollapsed_1k816_51 > .bcm-chat-splitter {
    display: none;
  }

  html.bcm-chat-resizing,
  html.bcm-chat-resizing body,
  html.bcm-chat-resizing * {
    cursor: col-resize !important;
  }

  html.bcm-chat-resizing body {
    user-select: none !important;
    -webkit-user-select: none !important;
  }
}

@media (max-width: 760px) {
  .bcm-chat-splitter { display: none !important; }
}
