.tooltip {
    display: inline-block;
    position: relative;
    cursor: help;
}

.tooltip-box {
    position: fixed;
    max-width: 500px; /* verhindert extrem schmale Box */
    background: #333;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: none;
}

.info-icon {
    position: relative;
    top: 3px; /* nach unten verschieben */
}

.tooltip-highlight {
    color: yellow;
    font-weight: bold;
}
