.editor-value-copiable {
    position: relative;
}

.value-editor-copy-button-wrapper {
    margin: auto -15px auto 2px;
    right: 0;
    align-items: center;
    position: absolute;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition-delay: 0.1s;
    height: 100%;
}

.value-editor-copy-button {
    width: 37px;
    height: 37px; 
}

.editor-value-copiable:hover
.value-editor-copy-button-wrapper {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0s ease;
    transition-delay: 0.5s;
}

.editor-value-copiable:hover > div:first-child {
    margin-right: 25px;
    transition: margin-right 0.1s ease;
    transition-delay: 0.5s;
}

.editor-value-copiable > div:first-child {
    transition: margin-right 0.1s ease;
    transition-delay: 0.1s;
}
