.qr-container {
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.qr-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 15px;
    background: #f8f8f8;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-image img {
    width: 100%;
    height: 100%;
}

.wallet-display {
    background: #f8f9fa;
    border: 1px dashed #e91e63;
    border-radius: 12px;
    padding: 12px;
    margin: 15px 0;
    word-break: break-all;
    font-family: monospace;
    font-size: 14px;
    color: #333;
    position: relative;
}

.copy-hint {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.address-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0f0f0;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
}

.address-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-btn-inner {
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
}
