  .hovertext {
  position: relative;
  display: inline-block;
}

.hovertextpop {
  visibility: hidden;
  opacity: 0;
  width: 100%;
  background-color: #581F18;
  color: white;
  text-align: center;
  border-radius: 5px;
  padding: 5px 5px;
  transition: opacity 0.2s ease-in-out;
  
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 105%;
  overflow-wrap: break-word;
}

.hovertext:hover .hovertextpop {
  opacity: 1;
  visibility: visible;
}
