
.button-disabled {
    cursor: not-allowed;
    opacity: 0.5;
    pointer-events: none;
}

/* Tooltip container */
.tooltip-questions {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip-questions .tooltiptext-questions {
    visibility: hidden;
    width: 450px;
    background-color: #555;
    color: #fff;
    text-align: left;
    padding: 5px;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltiptext-questions-right::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    /*margin-left: -5px;*/
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #555 transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip-questions:hover .tooltiptext-questions {
    visibility: visible;
    opacity: 1;
}

.tooltip-questions-right {
    top: -5px;
    left: 125%;
}

