/* ...existing code... */

/* Hover-Texte nur auf Links mit data-tooltip anwenden */
a[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  background: #333;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  top: -25px;
  white-space: nowrap;
  z-index: 100;
}



