.gcb-btn {
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    background: linear-gradient(to right, #0acffe, #495aff);
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
    font-size: 18px;
    border-radius: 50px;
	justify-content: center;
}

.gcb-btn i {
    font-size: 20px;
}

.gcb-btn {
    position: relative;
}

/* Copied text bubble */
.gcb-btn.copied::after {
    content: "Copied!";
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: #fff;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 6px;
    opacity: 0;
    animation: copiedFade 1.3s ease-out forwards;
}

@keyframes copiedFade {
    0% { opacity: 0; transform: translate(-50%, 10px); }
    30% { opacity: 1; transform: translate(-50%, 0); }
    70% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, -10px); }
}
