/* Основной контейнер тултипа */
.tooltip {
    --size: var(--4b53e89b, 6px);
    --offset: calc(var(--size) * -1);
    
    font-size: 11px;
    line-height: 13px;
    border-radius: 8px;
    padding: 8px 10px;
    background-color: var(--9e3b2c0a, #fff);  
    color: #000;
    position: relative;
    filter: drop-shadow(0 4px 24px rgba(24, 39, 75, .08)) 
            drop-shadow(0 3px 12px rgba(24, 39, 75, .12));
    will-change: transform;
}

/* Стили для контента тултипа */
.tooltip-inner {
    background-color: var(--9e3b2c0a, #fff);
    color: #000;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    font-family: -apple-system, "SF Pro Text", sans-serif;
    line-height: 13px;
    text-align: left;
}

.tooltip-arrow::before {
    border-left-color: white !important;
}
