/* Segue indicator — left accent bar and circled arrow connecting entries
   linked by a segue transition.
   Entry rows carry data-segue="true" when they segue into the next row.
   The :has(+ tr.entry-row) guard ensures the indicator only renders when
   the very next sibling is another entry row — not a breakpoint, talkset,
   or show delimiter that would leave the bracket dangling. */

.entry-table tr.entry-row[data-segue="true"]:has(+ tr.entry-row) > td {
  border-bottom-color: transparent;
}

.entry-table tr.entry-row[data-segue="true"]:has(+ tr.entry-row) > td:first-child,
.entry-table tr.entry-row[data-segue="true"] + tr.entry-row > td:first-child {
  border-left: 3px solid #CC0000;
}

/* Circled up-arrow centered on the boundary between the two segued rows */
.entry-table tr.entry-row[data-segue="true"]:has(+ tr.entry-row) > td:first-child {
  position: relative;
}

.entry-table tr.entry-row[data-segue="true"]:has(+ tr.entry-row) > td:first-child::after {
  content: '\2191';
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #CC0000;
  background: #fff;
  color: #CC0000;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  z-index: 1;
}
