.info-tooltip-trigger {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #333333b8;
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    cursor: pointer;
    margin-left: 5px;
    font-size: 12px;
    color: #fff;
}

.info-tooltip {
    position: fixed;
    background-color: #333;
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    max-width: 300px;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.info-tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0 6px;
    border-color: #333 transparent transparent transparent;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.info-tooltip-content {
    position: relative;
    z-index: 1;
}
