.donation-list { margin-top: 10px; display: flex; flex-direction: column; gap: 10px; }

.wallet-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    padding: 10px;
    border-radius: 10px;
    position: relative;
}

.wallet-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--card-border);
    font-size: 18px;
    flex-shrink: 0;
}

.wallet-meta { flex: 1; min-width: 0; }

.wallet-name {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    color: #edf2f7;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.wallet-id {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    cursor: pointer;
    transition: color 0.2s;
}

.wallet-id:hover { color: var(--accent); }

.btn-shared {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--card-border);
    color: var(--text);
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
}

.copy-btn { padding: 6px 8px; font-size: 12px; }
.home-btn { padding: 10px 20px; margin: 0 auto; display: block; }

/* Tooltip */
.wallet-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 14px); /* a little further down from anchor */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 21, 32, 0.82); /* lower opacity */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 10px 12px;
    z-index: 100;
    width: 300px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    pointer-events: none;
}

.wallet-tooltip.tip-visible {
    pointer-events: all;
    animation: tooltipIn 0.15s ease both;
}

.wallet-tooltip.tip-hiding {
    pointer-events: none;
    animation: tooltipOut 0.15s ease both;
}

@keyframes tooltipIn {
    from { opacity: 0; transform: translateX(-50%) translateY(6px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes tooltipOut {
    from { opacity: 1; transform: translateX(-50%) translateY(0); }
    to   { opacity: 0; transform: translateX(-50%) translateY(6px); }
}

.wallet-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--card-border);
}

.tooltip-address {
    font-size: 10px;
    color: var(--text);
    word-break: break-all;
    line-height: 1.5;
    user-select: text;
    cursor: text;
    margin-bottom: 8px;
}

.tooltip-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--accent);
    text-decoration: none;
    border: 1px solid rgba(74,158,255,0.25);
    border-radius: 6px;
    padding: 4px 8px;
    background: rgba(74,158,255,0.07);
    transition: background 0.15s, border-color 0.15s;
}

.tooltip-link:hover {
    background: rgba(74,158,255,0.15);
    border-color: rgba(74,158,255,0.5);
}

.tooltip-link svg { flex-shrink: 0; }

.tooltip-link-icon {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    opacity: 0.85;
}