.tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
    /*border-bottom: 1px dotted black;*/
}

    .tooltip .tooltiptext {
        font-weight: var(--bulma-body-weight);
        font-size: 12px;
        visibility: hidden;
        width: 300px;
        background-color: #555;
        color: #fff;
        text-align: center;
        padding: 5px;
        border-radius: 6px;
        position: absolute;
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s;
        bottom: 125%;
        left: 50%;
        margin-left: -150px;
    }

/*        .tooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }
*/
    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

    /* Třídy pro umístění šipky */
    /*.tooltip .tooltiptext.arrow-left::after {
        left: 10px;
        margin-left: 0;
    }

    .tooltip .tooltiptext.arrow-right::after {
        left: auto;
        right: 10px;
        margin-left: 0;
    }

    .tooltip .tooltiptext.arrow-center::after {
        left: 50%;
        margin-left: -5px;
        right: auto;
    }*/

    /* Zarovnání tooltipu */
    .tooltip .tooltiptext.left {
        left: 0;
        margin-left: 0;
    }

    .tooltip .tooltiptext.right {
        left: auto;
        right: 0;
        margin-left: 0;
    }

    .tooltip .tooltiptext.center {
        left: 50%;
        margin-left: -150px;
        right: auto;
    }
