
    .link-onion.svelte-12f74t6 {
        display: flex;
        align-items: center;
        max-width: 100%;
        overflow: hidden;
    }
    
    .toggle-btn.svelte-12f74t6 {
        background: none;
        border: none;
        padding: 0;
        text-align: left;
        cursor: pointer;
    }
    
    .truncate-text.svelte-12f74t6 {
        max-width: 250px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .full-text.svelte-12f74t6 {
        word-break: break-all;
    }

    @media (max-width: 490px) {
        .truncate-text.svelte-12f74t6 {
            max-width: 150px;
        }
    }
    
    .copy-btn.svelte-12f74t6 {
        background: none;
        border: none;
        cursor: pointer;
        padding: 2px;
        margin-left: 5px;
        opacity: 0.6;
        transition: opacity 0.2s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .copy-btn.svelte-12f74t6:hover {
        opacity: 1;
    }

    .link-onion-text.svelte-12f74t6{
        font-weight: 500;
		font-size: 18px;
		line-height: 1.6;
		color: #be2067;
	}

	.global-copied-notification.svelte-5566n9 {
		position: fixed;
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%);
		background: rgba(0, 0, 0, 0.8);
		color: white;
		padding: 10px 15px;
		border-radius: 4px;
		font-size: 14px;
		white-space: nowrap;
		z-index: 9999;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
		animation: svelte-5566n9-fadeInUp 0.3s ease;
	}
	
	.notification-content.svelte-5566n9 {
		display: flex;
		align-items: center;
		gap: 8px;
	}
	
	@keyframes svelte-5566n9-fadeInUp {
		from {
			opacity: 0;
			transform: translate(-50%, 10px);
		}
		to {
			opacity: 1;
			transform: translate(-50%, 0);
		}
	}
