.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;

    .tooltip-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        color: #c0c0c0;
        transition: color 0.2s;

        &:hover {
            color: white;
        }

        svg {
            display: block;
        }
    }

    .tooltip-box {
        position: absolute;
        top: 120%;
        left: 100%;
        transform: translateX(-50%);
        background: #333;
        color: #fff;
        padding: 6px 10px;
        border-radius: 4px;
        font-size: 12px;
        z-index: 10;
        opacity: 0.95;
        max-width: 220px;
        min-width: 180px;
        line-height: 1.75;
        font-weight: 500;

        // small arrow
        &::after {
            content: "";
            position: absolute;
            top: -5px;
            left: 50%;
            transform: translateX(-50%);
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent #333 transparent;
        }
    }
}