.tooltip-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 9999;
}

.tooltip-trigger:hover .tooltip-text {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Стрелка для тултипа */
.tooltip-text::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: #1f2937;
}