.social-share-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-share-buttons a,
.social-share-buttons button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.social-share-buttons img {
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
}

.social-share-buttons img:hover {
    transform: scale(1.2);
}

.social-share-buttons .label{
    display: flex;
    color: #192041;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
}

.copy-link-button {
    position: relative;
}

.copy-confirm {
    position: absolute;
    top: -30px;
    right: 0;
    background-color: #1a1a33;
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    animation: fadeInOut 2s forwards;
    z-index: 10;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-5px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-5px); }
}
