    .tooltip-label-container,
    .tooltip-communications-fee-label-container {
        display: flex;
        position: relative;
        overflow: visible;
        /* Ensure the tooltip is not clipped */
    }

    .tooltip-percent-icon {
        display: flex;
        margin: 0px 8px;
        border: 1px solid;
        border-radius: 50%;
        width: 16px;
        height: 16px;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        opacity: 0.5;
    }

    .tooltip-content {
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(-8px);
        background: #333;
        color: #fff;
        height: fit-content;
        width: fit-content;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        display: none;
        z-index: 99999;
        /* Ensure the tooltip is above other elements */
    }