.share-btn {
    background-color: #10a37f !important;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background-color: #0d8e6e !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 163, 127, 0.3);
}

.share-btn:active {
    transform: translateY(0);
}

.copy-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #10a37f;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    animation: slideIn 0.3s ease, slideOut 0.3s ease 2.7s;
    z-index: 10000;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}