/* Tooltip Container */
[data-tooltip] {
  position: relative;
}

/* Tooltip-Bubble */
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 10px;

  background: #222;
  color: #fff; /* Weiß */

  border-radius: 4px;

  font-family: Arial, sans-serif; /* Schriftart */
  font-size: 12px;                /* Schriftgröße */
  font-weight: normal !important; /* Keine Fett-Formatierung */
  font-style: normal !important;  /* Keine Kursiv-Formatierung */
  text-decoration: none !important; /* Keine Unterstreichungen */

  line-height: 1.3;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 9999;
}

/* Hover Zustand */
[data-tooltip]:hover::after {
  opacity: 1;
}