.copy-link-button {
    position: relative;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    transition: all 0.3s ease;
    width: 30px; /* Sesuaikan ukuran sesuai kebutuhan */
    height: 40px;
    cursor: pointer;
}

.copy-link-button .copy-text {
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    font-size: 12px;
    white-space: nowrap;
    color: #28a745; /* Warna teks, sesuaikan sesuai tema */
    /* margin-left: 10px; Tambahkan margin kiri sesuai kebutuhan */
}

.copy-link-button.active .copy-text {
    opacity: 1;
    transform: scale(1);
}

.copy-link-button.active i {
    opacity: 0;
    transform: scale(0.8);
}
