/* public/css/rs-tooltips.css */
.rs-tooltip {
  max-width: 340px;
  background: rgba(20,22,26,0.94);
  color: #fff;
  font: 12px/1.35 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  border-radius: 6px;
  padding: 8px 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.01em;
  white-space: normal;
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 80ms ease;
}

/* remove the old ⓘ cue entirely — no pseudo-elements */
.th-label[data-tip] {
  cursor: help; /* optional; remove if you want default cursor */
}
