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

.tooltip:hover {
        border-bottom: none;
    }

.tooltip:hover::after {
        content: attr(title);
        visibility: visible;
        width: 600px;
        background-color: black;
        color: #fff;
        text-align: justify;
        border-radius: 6px;
        padding: 5px 10px;
        /* Position the tooltip text */
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 0;
        margin-left: -60px;
    }






