/*
  This CSS rule finds the Plotly hover label element
  (which has the class name .hovertext) and forcibly hides it.
  The "!important" flag ensures this rule overrides any other
  styles that Plotly tries to apply.
*/
.hovertext {
    display: none !important;
  }