﻿
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 260px;
    /*text-align: center;*/
    border-radius: 6px;
    top: -5px;
    right: 105%;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    background-color: lightgrey;
    color: black;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}
