/* .tooltip:hover .tooltiptext {
  display: block;
} */

/* .tooltiptext {
  display: none;
  background: #C8C8C8;
  margin-left: 28px;
  padding: 10px;
  position: absolute;
  z-index: 1000;
  width: 200px;
  height: 100px;
} */


.tooltiptext-2 {
  visibility: hidden;
  /* width: 120px; */
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 9px 8px 9px;

  /* Positioning */
  position: absolute;
  z-index: 1000;
  top: 50px;


  /* Fade-in effect */
  opacity: 1;
  transition: opacity 0.3s;
}

/* Right-align a tooltip so it opens leftward (into the screen) instead of
   flowing off the right edge — used for the rightmost navbar icon (Logout). */
.tooltiptext-2-right {
  right: 0;
  left: auto;
  white-space: nowrap;
}