.tooltip, .wp_changestatus_tooltip {
    position: relative;
    display: inline-block;
}
.tooltip {
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 160px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    font-size: smaller;
    
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -80px;

    opacity: 0;
    transition: opacity 2s;
}

.wp_changestatus_tooltip_nd .wp_changestatus_tooltiptext {
    visibility: hidden;
    z-index: 1;
    display:none;
}
.wp_changestatus_tooltip .wp_changestatus_tooltiptext {
    width: 160px;
    display: block;
    background-color: white;
    border:1px solid black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    font-size: smaller;
    
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -80px;

    opacity: 0;
    transition: opacity 2s;
}


.tooltip:hover .tooltiptext, .wp_changestatus_tooltip .wp_changestatus_tooltiptext {
    visibility: visible;
    opacity: 1;
}

.tooltip:hover {cursor:help}

.tooltip .tooltiptext::after,.wp_changestatus_tooltip .wp_changestatus_tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
  }

  .wp_changestatus_tooltip span.wp_ampel:hover, .wp_changestatus_tooltip_nd span.wp_ampel:hover {
      cursor:pointer;
  }
