// Tooltip styles
.mux-tooltip {
    position: absolute;
    z-index: 1000;
    background-color: $grey;
    color: $white;
    padding: 8px 12px;
    font-size: $font-size-s;
    line-height: 1.5;
    max-width: 230px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    pointer-events: none;
    text-align: left;
    
    &:after {
        content: "";
        position: absolute;
        top: 100%;
        left: 20px;
        margin-left: -8px;
        border-width: 8px;
        border-style: solid;
        border-color: $grey transparent transparent transparent;
    }
    
    &.visible {
        opacity: 1;
    }
}

// Style for info icon
.caption-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-left: 8px;
    
    img {
        width: 18px;
        height: 18px;
    }
    
    &:hover {
        background-color: $grey100;
    }
}