.hostpn-tooltip-box {
    position: fixed;
    z-index: 9997;
    max-width: 300px;
    background: #fff;
    color: #333;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-sizing: border-box;
    word-wrap: break-word;
}
.hostpn-tooltip-box--visible {
    opacity: 1;
}
.hostpn-tooltip-box::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #fff;
}
.hostpn-tooltip-box--bottom::after {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: #fff;
}
