/* Genomus China power provenance V78.
   Only approximate/estimated values get the visible marker. */
.gen-power-approx {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 31px;
  height: 18px;
  margin-left: 5px;
  padding: 0 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 184, 77, .68);
  background: rgba(255, 184, 77, .13);
  box-shadow: 0 0 12px rgba(255, 184, 77, .11);
  color: #ffd08a;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  vertical-align: 1px;
  cursor: help;
  user-select: none;
  white-space: nowrap;
}
.gen-power-approx:focus {
  outline: 2px solid rgba(255, 208, 138, .52);
  outline-offset: 2px;
}
/* Native title remains as a clipping-safe fallback. This tooltip is the richer
   desktop/focus presentation when the card/container allows overflow. */
.gen-power-approx::after {
  content: attr(data-power-comment);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  z-index: 9999;
  width: min(320px, 78vw);
  padding: 9px 11px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  background: rgba(12, 15, 20, .97);
  box-shadow: 0 12px 32px rgba(0,0,0,.32);
  color: #f3f5f7;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  white-space: normal;
  text-align: left;
  transform: translate(-50%, 4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .14s ease, transform .14s ease, visibility .14s ease;
}
.gen-power-approx:hover::after,
.gen-power-approx:focus::after {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
