.rdlfz-tooltip {
    border-bottom: 1px solid #aaa;
    cursor: help;
    position: relative;
    color: inherit;
    text-decoration: none; /* Убираем подчеркивание, используем border-bottom */
}

.rdlfz-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 9999;
}

.rdlfz-tooltip:hover::after,
.rdlfz-tooltip.rdlfz-show-tooltip::after {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .rdlfz-tooltip::after {
        white-space: normal;
        max-width: 250px;
    }
}