.mond-wrapper {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.mond-label {
  font-size: 1em;
  color: #444;
  text-decoration: underline dotted;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.mond-label:hover {
  color: #0066cc;
  background-color: rgba(0, 102, 204, 0.1);
}

.mond-tooltip {
  display: none;
  position: absolute;
  bottom: -10px;
  left: 10%;
  transform: translate(-50%, 95%);
  background: #222;
  color: #eee;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.95em;
  max-width: 280px;
  z-index: 100;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
  line-height: 1.4;
  white-space: normal;
}

.mond-wrapper.active .mond-tooltip {
  display: block;
}
