﻿.tooltipnew {
    position: relative;
    display: inline-block;
    
}

    .tooltipnew .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        /* Position the tooltip */
        position: absolute;
        z-index: 1;
    }

.tooltipnew:hover .tooltiptext {
    visibility: visible;
}
