/*!
 * Zulu Code linkify.css v1.0.0 — styles for links produced by linkify.js.
 * (c) QaaQ / zulucode.org — CC BY 4.0 <https://creativecommons.org/licenses/by/4.0/>
 * Contract: https://zulucode.org/spec/linkify-regex.md
 */
a.zulu-ref {
  color: #185fa5;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 2px;
  position: relative;
}
a.zulu-ref:hover,
a.zulu-ref:focus-visible {
  text-decoration-style: solid;
}
/* Hover tooltip: linkify.js sets data-zulu-name after a lazy, user-triggered lookup. */
a.zulu-ref[data-zulu-name]:hover::after {
  content: attr(data-zulu-name);
  position: absolute;
  left: 0;
  bottom: 100%;
  margin-bottom: 4px;
  background: #16324a;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  z-index: 2147483000;
}
