.tooltip .tooltiptext {
    visibility: hidden;
    width: 15rem;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    font-size: 1rem;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.tooltip .tooltiptext li {
    background-color: inherit;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}
