[data-copy] {
    display: inline-block;
    width: 14px;
    color: #aaa;
    line-height: inherit;
    font-size: 10px;
    vertical-align: text-top;
    transition: all 0.2s ease;
    cursor: copy;
}

[data-copy].copied {
    display: inline-block !important;
}

[data-copy]:after {
    content: '\f24d';
    font-family: 'FontAwesome', sans-serif;
    display: block;
    width: 100%;
    height: 100%;
    line-height: inherit;
    text-align: center;
    font-size: inherit;
    opacity: .75;
    transition: all 0.2s ease;
}

[data-copy].copied::after {
    content: '\f00c';
    opacity: 1;
    color: green;
}

[data-copy]:hover{
    color: #222;
}


#copy-tooltip {
    position: fixed;
    z-index: 99999999;
    background: #fff;
    padding: 8px;
    border-radius: 6px;
    min-width: 180px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    font-size: 13px;
}

.copy-tooltip-box {
    background: #fff;
    padding: 8px;
    border-radius: 6px;
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-size: 13px;
}

.copy-tooltip-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.copy-tooltip-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    padding: 8px;
    cursor: pointer;
    border-radius: 4px;
}

.copy-tooltip-list li i {
    margin-top: 2px;
    color: inherit;
}

.copy-item-content {
    display: flex;
    flex-direction: column;
}

.copy-item-title {
    font-weight: 600;
    font-size: 13px;
}

.copy-item-text {
    font-size: 12px;
    color: inherit;
    line-height: 1.3;
    word-break: break-all;
    opacity: .75;
}

.copy-tooltip-list li:hover {
    background: #008fd6;
    color: #fff !important;
}