.truncate-address {
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    position: relative;
}


.table  .truncate-address:hover{
    background-color: #f7045534;
    color: #f70454;
    border: solid 1px #f70454;
}
.tooltip-float {
    position: fixed;
    backdrop-filter: blur(5rem);
    background-color: #d60047;
    color: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.4;
    max-width: 380px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
    pointer-events: none;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 99999;
    white-space: normal;
}

.tooltip-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.tooltip-arrow.up {
    border-bottom: 6px solid #1a1a1a;
    bottom: -6px;
}

.tooltip-arrow.down {
    border-top: 6px solid #1a1a1a;
    top: -6px;
}