.copy-wrapper {
    position: relative;
    /* display: inline-block; */
}

.copy-span {
    cursor: pointer;
    text-decoration: underline;
    /* color: #0066cc; */
	font-size: 0.8em;
	white-space: normal;          /* assure les retours à la ligne possibles */
}

.copy-span:hover {
    color: #004999;
}

.copy-tooltip {
    position: absolute;
    left: 50%;
    top: 120%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    z-index: 9999;
}

.copy-tooltip.show {
    opacity: 1;
}
