/* bubble.css  */

.bubble {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: lightblue;
  color: black;
  font-size: 18px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
  line-height: 1.15;
  padding: 8px 14px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  white-space: nowrap;
  gap: 2px;
}


/*------- context menu ---------*/

  .ctx {
    position: absolute; display: none; min-width: 260px;
    background: var(--bg); border: 1px solid var(--bd); box-shadow: var(--sh); z-index: 2147483647;
    padding: 6px; border-radius: 10px; font: 14px/1.4 system-ui, sans-serif; color: #111;
  }
  .ctx ul { list-style: none; margin: 0; padding: 4px; }
  .ctx .item {
    padding: 8px 10px; border-radius: 6px; cursor: default; user-select: none;
  }
  .ctx .item:hover, .ctx .item[aria-current="true"] { background: var(--hi); }
  .sep { height: 1px; background: var(--bd); margin: 6px 4px; }
  .hint { color:#666; font-size:12px; margin:6px 10px 4px; }






