   .copy-icon {
    cursor: pointer;
    width: 14px;
    height: 14px;
    color: #a53bfd;
}
        .copy-icon:hover {
            opacity: 0.8;
        }
          .link-icon {
           cursor: pointer;
    width: 14px;
    height: 14px;
    color: #2163e9;
            transition: all 0.3s ease;
        }
        
        .link-icon:hover {
            opacity: 0.7;
        }
        .toast {
            position: fixed;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 12px 24px;
            border-radius: 4px;
            opacity: 0;
            transition: all 0.3s ease-in-out;
            pointer-events: none;
            z-index: 9999;
            font-size: 14px;
        }
        
        .toast.show {
            opacity: 1;
        }

        .counter {
            margin-top: 10px;
            font-size: 14px;
            color: #666;
        }